Skip to content

Commit 655dcba

Browse files
committed
update ci
1 parent e7efd23 commit 655dcba

1 file changed

Lines changed: 20 additions & 13 deletions

File tree

Lines changed: 20 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,39 @@
11
# following https://github.com/coq-community/docker-coq-action
22

3-
name: Docker CI
3+
name: CI
44

55
on:
66
pull_request:
77
types: [opened, synchronize, reopened]
88
push:
9+
paths-ignore:
10+
- '**/*.md'
911
workflow_dispatch:
1012

1113
jobs:
12-
build:
13-
# the OS must be GNU/Linux to be able to use the docker-coq-action
14+
15+
coq:
1416
runs-on: ubuntu-latest
1517
strategy:
16-
matrix:
17-
coq_version:
18-
- dev
19-
- '8.20'
20-
- '8.19'
21-
- '8.18'
22-
- '8.17'
23-
- '8.16'
24-
- '8.15'
25-
- '8.14'
2618
fail-fast: false
19+
matrix:
20+
coq_version: ['8.20', 8.19, 8.18, 8.17, 8.16, 8.15, 8.14]
2721
steps:
2822
- uses: actions/checkout@v4
2923
- uses: coq-community/docker-coq-action@v1
3024
with:
3125
opam_file: 'coq-color.opam'
26+
ocaml_version: 5.2.1
3227
coq_version: ${{ matrix.coq_version }}
28+
29+
rocq:
30+
runs-on: ubuntu-latest
31+
strategy:
32+
fail-fast: false
33+
matrix:
34+
rocq_version: [dev, '9.0']
35+
container:
36+
image: rocq/rocq-prover:${{ matrix.rocq_version }}
37+
steps:
38+
- uses: actions/checkout@v4
39+
- run: opam install -y .

0 commit comments

Comments
 (0)