{"id":24305711,"url":"https://github.com/lyndychivs/dotnet-stryker-action","last_synced_at":"2026-05-02T13:07:58.114Z","repository":{"id":272366890,"uuid":"916358193","full_name":"lyndychivs/dotnet-stryker-action","owner":"lyndychivs","description":"GitHub Action for mutation testing with Stryker.NET via Docker","archived":false,"fork":false,"pushed_at":"2026-04-10T08:51:15.000Z","size":108,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-11T17:28:01.822Z","etag":null,"topics":["action","actions","dotnet","github","github-actions","mutation","report","reporting","stryker","testing"],"latest_commit_sha":null,"homepage":"https://lyndychivs.github.io/dotnet-stryker-action/","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lyndychivs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":"lyndychivs","buy_me_a_coffee":"lyndychivs"}},"created_at":"2025-01-14T00:01:06.000Z","updated_at":"2026-04-10T08:51:19.000Z","dependencies_parsed_at":"2026-03-13T17:04:32.489Z","dependency_job_id":null,"html_url":"https://github.com/lyndychivs/dotnet-stryker-action","commit_stats":null,"previous_names":["lyndychivs/actions-stryker","lyndychivs/action-stryker","lyndychivs/stryker-dotnet-action","lyndychivs/dotnet-stryker-action"],"tags_count":7,"template":true,"template_full_name":null,"purl":"pkg:github/lyndychivs/dotnet-stryker-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lyndychivs%2Fdotnet-stryker-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lyndychivs%2Fdotnet-stryker-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lyndychivs%2Fdotnet-stryker-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lyndychivs%2Fdotnet-stryker-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lyndychivs","download_url":"https://codeload.github.com/lyndychivs/dotnet-stryker-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lyndychivs%2Fdotnet-stryker-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32535015,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-02T12:25:33.646Z","status":"ssl_error","status_checked_at":"2026-05-02T12:24:51.733Z","response_time":132,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["action","actions","dotnet","github","github-actions","mutation","report","reporting","stryker","testing"],"created_at":"2025-01-17T02:15:33.284Z","updated_at":"2026-05-02T13:07:58.110Z","avatar_url":"https://github.com/lyndychivs.png","language":"Shell","funding_links":["https://github.com/sponsors/lyndychivs","https://buymeacoffee.com/lyndychivs"],"categories":[],"sub_categories":[],"readme":"# dotnet-stryker-action\nGitHub Action for mutation testing with [Stryker.NET](https://stryker-mutator.io/docs/stryker-net/introduction/) via Docker.\n\n## GitHub Action\nThis Action accepts a [Stryker Mutator .NET Configuration](https://stryker-mutator.io/docs/stryker-net/configuration) file (`.json` or `.yaml` format).\n\n*Create a configuration file:*\n```\ndotnet stryker init\n```\n\n### Parameters\n| Argument            | Description | Default | Required |\n| :---                | :---        | :---    | :---     |\n| `configurationFile` | Path of the Stryker.NET configuration file. | — | Yes |\n| `dashboardApiKey`   | API key for authentication with the Stryker dashboard. | — | No |\n\n#### Example 1\n```yml\nname: Run Stryker.NET\n\non: push\n\njobs:\n  mutation-testing:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout Repository\n        uses: actions/checkout@v6\n\n      - name: Run Stryker.NET against Repository\n        uses: lyndychivs/dotnet-stryker-action@v1.5\n        with:\n          configurationFile: \"stryker-config.json\"\n```\n#### Example 2 - with Dashboard API Key\nCheck out the [Stryker Dashboard documentation here](https://stryker-mutator.io/docs/General/dashboard/); the API key is generated from the Dashboard site.\n```yml\nname: Run Stryker.NET with Dashboard Reporting\n\non: push\n\njobs:\n  mutation-testing:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout Repository\n        uses: actions/checkout@v6\n\n      - name: Run Stryker.NET against Repository\n        uses: lyndychivs/dotnet-stryker-action@v1.5\n        with:\n          configurationFile: \"stryker-config.json\"\n          dashboardApiKey: ${{ secrets.STRYKER_DASHBOARD }} # API key saved in Secrets\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flyndychivs%2Fdotnet-stryker-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flyndychivs%2Fdotnet-stryker-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flyndychivs%2Fdotnet-stryker-action/lists"}