File tree Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments