Skip to content

Commit

Permalink
Change logic again
Browse files Browse the repository at this point in the history
  • Loading branch information
adamrtalbot committed Jul 31, 2023
1 parent 83fec8c commit 4b2c0f7
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -509,10 +509,7 @@ jobs:
if: always()
steps:
- name: All tests ok
if: |
always() &&
!contains(needs.*.result, 'failure') &&
!contains(needs.*.result, 'cancelled')
if: ${{ success() || failure() || ( always() && ! cancelled() ) }}
run: exit 0
- name: One or more tests failed
if: ${{ contains(needs.*.result, 'failure') }}
Expand Down

0 comments on commit 4b2c0f7

Please sign in to comment.