Create ci.yml #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt-get install opam | |
opam init | |
opam repo add coq-released https://coq.inria.fr/opam/released | |
opam update | |
opam install coq 8.19.1 | |
opam install coq-iris 4.2.0 | |
- name: Run check | |
run: | | |
make -j4 |