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 583efac commit 33ddad3
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
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: |
make -j4

0 comments on commit 33ddad3

Please sign in to comment.