Skip to content

Commit

Permalink
ci: fix Stryker install (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
skarllot authored Dec 25, 2023
1 parent 71e00a3 commit f302d85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/mutation-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@ jobs:

- name: Stryker
run: |
dotnet tool install dotnet-stryker
dotnet tool restore
dotnet stryker -f .config/stryker-config.json -O StrykerOutput --dashboard-api-key ${{ secrets.STRYKER_DASHBOARD_API_KEY }} -v main
if: github.event_name != 'pull_request'

- name: Stryker (Diff)
run: |
dotnet tool install dotnet-stryker
dotnet tool restore
dotnet stryker -f .config/stryker-config.json -O StrykerOutput -r html -r markdown --since:main
if: github.event_name == 'pull_request'

Expand Down

0 comments on commit f302d85

Please sign in to comment.