We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9db3142 + c7258d7 commit f0b263aCopy full SHA for f0b263a
1 file changed
.github/workflows/docker-action.yml
@@ -16,17 +16,17 @@ jobs:
16
runs-on: ubuntu-latest
17
strategy:
18
matrix:
19
- image:
20
- - 'coqorg/coq:dev'
21
- - 'coqorg/coq:8.19'
22
- - 'coqorg/coq:8.18'
+ coq_version:
+ - 'dev'
+ - '8.19'
+ - '8.18'
23
fail-fast: false
24
steps:
25
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
26
- uses: coq-community/docker-coq-action@v1
27
with:
28
opam_file: 'coq-math-classes.opam'
29
- custom_image: ${{ matrix.image }}
+ coq_version: ${{ matrix.coq_version }}
30
before_install: |
31
startGroup "Setup and print opam config"
32
opam repo -a --set-default add coq-extra-dev https://coq.inria.fr/opam/extra-dev
0 commit comments