Skip to content

Commit

Permalink
Create coq.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
afflom authored Feb 17, 2025
1 parent f354345 commit 4997c4e
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/coq.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Coq Verification

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
verify:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Install Coq
run: |
sudo apt-get update
sudo apt-get install -y coq
- name: Run Coq Verification
run: |
# If you have a Makefile in your Coq directory, you can run:
# make -C coq
#
# Otherwise, compile all .v files in the 'coq' directory:
find coq -name '*.v' -print0 | xargs -0 -n1 coqc

0 comments on commit 4997c4e

Please sign in to comment.