From 7d02da6c9763506ae217fbc8c7a90873bc91f8c9 Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Sun, 5 Jan 2025 09:40:09 -0800 Subject: [PATCH] Remove 'overall_result' action step It's hard to get this to run only when PR mutants are built Maybe simpler to just see if anything fails --- .github/workflows/tests.yml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b4cfa8c8..2ec53d2c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -243,15 +243,3 @@ jobs: with: name: mutants-${{matrix.test_tool}}-shard${{matrix.shard}}.out path: mutants.out - - overall-result: - needs: [quick-test, test, tests-from-tarball, pr-mutants, cargo-mutants] - runs-on: ubuntu-latest - if: always() - steps: - - name: Successful workflow - if: ${{ !(contains(needs.*.result, 'failure')) }} - run: exit 0 - - name: Failing workflow - if: ${{ contains(needs.*.result, 'failure') }} - run: exit 1