Skip to content
Merged
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
27 changes: 1 addition & 26 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,31 +64,6 @@ jobs:
./Artifacts/*
./TestResults/*.trx

mutation-tests-core:
name: "Mutation tests (aweXpect.Core)"
runs-on: ubuntu-latest
env:
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}
DOTNET_NOLOGO: true
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Setup .NET SDKs
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
8.0.x
- name: Run mutation tests
run: ./build.sh MutationTestsCore
- name: Upload artifacts
if: always()
uses: actions/upload-artifact@v4
with:
name: MutationTestsCore
path: |
./Artifacts/*

mutation-tests-main:
name: "Mutation tests (aweXpect)"
runs-on: ubuntu-latest
Expand Down Expand Up @@ -116,7 +91,7 @@ jobs:

mutation-tests-dashboard:
name: "Mutation tests Dashboard"
needs: [ mutation-tests-main, mutation-tests-core ]
needs: [ mutation-tests-main ]
runs-on: ubuntu-latest
env:
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}
Expand Down
Loading