Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: combine stryker and build pipeline #537

Merged
merged 1 commit into from
Mar 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading