Skip to content

Commit 8680efb

Browse files
committed
restore CI
1 parent b9bb2b7 commit 8680efb

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

.github/workflows/ci.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: "Coq latest"
2+
3+
on:
4+
push:
5+
schedule:
6+
# Prime the caches every Monday
7+
- cron: 0 1 * * MON
8+
9+
permissions: read-all
10+
11+
jobs:
12+
build:
13+
strategy:
14+
fail-fast: false
15+
matrix:
16+
os:
17+
- ubuntu-latest
18+
ocaml-compiler:
19+
- "4.14.0"
20+
21+
runs-on: ${{ matrix.os }}
22+
23+
steps:
24+
- name: Checkout tree
25+
uses: actions/checkout@v4
26+
27+
- name: Set-up OCaml ${{ matrix.ocaml-compiler }}
28+
uses: ocaml/setup-ocaml@v2
29+
with:
30+
ocaml-compiler: ${{ matrix.ocaml-compiler }}
31+
opam-repositories: |
32+
default: https://github.com/ocaml/opam-repository.git
33+
coq-released: https://coq.inria.fr/opam/released
34+
35+
- run: opam install . --deps-only --with-test
36+
37+
- run: opam exec -- dune build
38+
39+
- run: opam exec -- dune runtest

0 commit comments

Comments
 (0)