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 605b6bf
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 install coq 8.19.1
opam install coq-iris 4.2.0
- name: Run check
run: |
make -j4

0 comments on commit 605b6bf

Please sign in to comment.