Skip to content

Commit dc6eaee

Browse files
committed
Initial commit
0 parents  commit dc6eaee

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

110 files changed

+25966
-0
lines changed

.github/workflows/build.yml

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Test compilation
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
strategy:
10+
matrix:
11+
target: [ opam ]
12+
13+
steps:
14+
15+
- name: Try to restore opam cache
16+
id: opam-cache
17+
uses: actions/cache@v2
18+
with:
19+
path: "~/.opam"
20+
key: opam-${{github.base_ref}}-${{github.ref}}
21+
restore-keys: |
22+
opam--refs/heads/${{github.base_ref}}
23+
24+
- name: Install OCaml
25+
uses: avsm/setup-ocaml@v1
26+
with:
27+
ocaml-version: 4.07.1+flambda
28+
29+
- name: Checkout code
30+
uses: actions/checkout@v2
31+
with:
32+
fetch-depth: 1
33+
34+
- run: opam repo add coq-released https://coq.inria.fr/opam/released
35+
- run: opam install coq.8.13.2 coq-equations.1.2.3+8.13 coq-stdpp.1.5.0 coq-metacoq-template.1.0~beta2+8.13 coq-smpl
36+
37+
- run: opam exec -- make -j 2

0 commit comments

Comments
 (0)