Skip to content

Commit

Permalink
try docker
Browse files Browse the repository at this point in the history
  • Loading branch information
gares committed Dec 14, 2024
1 parent 8d3f5ed commit 5d135a0
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,27 @@ env:

jobs:

docker:
runs-on: ubuntu-latest # container actions require GNU/Linux
strategy:
matrix:
coq_version:
- '8.20'
- dev
ocaml_version: ['default']
fail-fast: false # don't stop jobs if one fails
steps:
- uses: actions/checkout@v3
- uses: coq-community/docker-coq-action@v1
with:
opam_file: 'folder/coq-proj.opam'
coq_version: ${{ matrix.coq_version }}
ocaml_version: ${{ matrix.ocaml_version }}
export: 'OPAMWITHTEST OPAMIGNORECONSTRAINTS.' # space-separated list of variables
env:
OPAMWITHTEST: 'true'
OPAMIGNORECONSTRAINTS: 'coq'

build:
runs-on: ubuntu-latest
strategy:
Expand Down

0 comments on commit 5d135a0

Please sign in to comment.