Use finite_constrained_trace_from instead of finite_valid_trace_from … #914
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Test PR" | |
on: | |
push: | |
workflow_dispatch: | |
branches: | |
- '**' | |
jobs: | |
build: | |
# the OS must be GNU/Linux to be able to use the docker-coq-action | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
image: | |
- 'coqorg/coq:8.16-ocaml-4.14-flambda' | |
- 'coqorg/coq:8.17-ocaml-4.14-flambda' | |
- 'coqorg/coq:8.18-ocaml-4.14-flambda' | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: coq-community/docker-coq-action@v1 | |
with: | |
opam_file: 'coq-vlsm.opam' | |
custom_image: ${{ matrix.image }} | |
# See also: | |
# https://github.com/coq-community/docker-coq-action#readme | |
# https://github.com/erikmd/docker-coq-github-action-demo |