Skip to content

Commit

Permalink
Remove 'overall_result' action step
Browse files Browse the repository at this point in the history
It's hard to get this to run only when PR mutants are built

Maybe simpler to just see if anything fails
  • Loading branch information
sourcefrog committed Jan 5, 2025
1 parent d1429cb commit 7d02da6
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 7d02da6

Please sign in to comment.