Skip to content

Commit

Permalink
[CI] Add coq-check-all job (#416)
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 committed Apr 18, 2024
1 parent a7857fd commit b9aea1e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/coq.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,13 @@ jobs:
submodules: recursive
- name: make
run: TIMED=1 make

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' }}

0 comments on commit b9aea1e

Please sign in to comment.