Skip to content

Commit

Permalink
Move stryker.yml into build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
vbreuss committed Mar 30, 2024
1 parent f35959b commit bbcfbbb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 84 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,7 @@ jobs:
coverage-reports: coverage-report/Cobertura.xml

stryker-ubuntu:
name: Analyze quality of unit test coverage with .NET Stryker (Ubuntu)
if: startsWith(github.ref, 'refs/heads/release/')
name: Stryker mutation testing (Ubuntu)
runs-on: ubuntu-latest
timeout-minutes: 300
steps:
Expand Down Expand Up @@ -242,8 +241,7 @@ jobs:
../../tools/dotnet-stryker -f ../.github/stryker/Stryker.Config.Testing.json -v "${GITHUB_REF#refs/heads/}" -r "Dashboard" -r "cleartext"
stryker-windows:
name: Analyze quality of unit test coverage with .NET Stryker (Windows)
if: startsWith(github.ref, 'refs/heads/release/')
name: Stryker mutation testing (Windows)
runs-on: windows-latest
timeout-minutes: 300
steps:
Expand Down Expand Up @@ -289,7 +287,7 @@ jobs:
if: startsWith(github.ref, 'refs/heads/release/')
runs-on: ubuntu-latest
environment: production
needs: [test-macos, test-ubuntu, test-windows, test-net-framework, test-examples]
needs: [test-macos, test-ubuntu, test-windows, test-net-framework, test-examples, stryker-windows, stryker-ubuntu]
steps:
- name: Checkout sources
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
Expand Down Expand Up @@ -348,7 +346,7 @@ jobs:
name: Cleanup
if: startsWith(github.ref, 'refs/heads/release/')
runs-on: ubuntu-latest
needs: [deploy, stryker-windows, stryker-ubuntu]
needs: [deploy]
steps:
- name: Comment relevant issues and pull requests
uses: apexskier/github-release-commenter@v1.3.6
Expand Down
77 changes: 0 additions & 77 deletions .github/workflows/stryker.yml

This file was deleted.

1 change: 0 additions & 1 deletion Testably.Abstractions.sln
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "workflows", "workflows", "{
.github\workflows\ci-stryker.yml = .github\workflows\ci-stryker.yml
.github\workflows\ci.yml = .github\workflows\ci.yml
.github\workflows\pr.yml = .github\workflows\pr.yml
.github\workflows\stryker.yml = .github\workflows\stryker.yml
.github\workflows\test-report.yml = .github\workflows\test-report.yml
EndProjectSection
EndProject
Expand Down

0 comments on commit bbcfbbb

Please sign in to comment.