Skip to content

Commit

Permalink
Create ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tjhance committed Sep 14, 2024
1 parent 0a25f1f commit 649b8c1
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
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 pin coq 8.19.1 --confirm-level=yes
opam pin coq-iris 4.2.0 --confirm-level=yes
- name: Run check
run: |
eval $(opam env)
make -j4

0 comments on commit 649b8c1

Please sign in to comment.