Skip to content

Commit

Permalink
[CI] add coq-check-all job
Browse files Browse the repository at this point in the history
This allows branch protection (for automerge) that doesn't need to evolve as tested Coq versions change
  • Loading branch information
JasonGross authored Apr 13, 2024
1 parent 0f4e201 commit 86ddcd1
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/coq.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,15 @@ jobs:
run: make -j2 deps
- name: make all
run: make -j2 all

coq-check-all:
runs-on: ubuntu-latest
needs: build
if: always()
steps:
- run: echo 'build passed'
if: ${{ needs.build.result == 'success' }}
- run: echo 'build failed' && false
if: ${{ needs.build.result != 'success' }}
- run: echo 'test-standalone failed' && false
if: ${{ needs.test-standalone.result != 'success' }}

0 comments on commit 86ddcd1

Please sign in to comment.