Skip to content

Commit

Permalink
Fix check-all run
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonGross committed Aug 10, 2022
1 parent 6c69287 commit a7e88a2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/coq.yml
Expand Up @@ -76,5 +76,9 @@ jobs:
check-all:
runs-on: ubuntu-latest
needs: build
if: always()
steps:
- run: true
- run: echo 'The triggering workflow passed'
if: ${{ needs.build.result == 'success' }}
- run: echo 'The triggering workflow failed' && false
if: ${{ needs.build.result != 'success' }}

0 comments on commit a7e88a2

Please sign in to comment.