From acb5402febcebbc2d4e1b297eca547d3e6ae3b4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Valentin=20Breu=C3=9F?= Date: Sun, 7 Sep 2025 12:14:26 +0200 Subject: [PATCH] refactor: remove core mutation tests --- .github/workflows/build.yml | 27 +-------------------------- 1 file changed, 1 insertion(+), 26 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6fe722f2b..899a39d7d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 @@ -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 }}