Try fixing the rocq-equations test-suite package dune def #643
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: CI | |
on: | |
push: # On any push on a "stable" branch | |
branches: | |
- main | |
- 8.14 | |
- 8.13 | |
- 8.12 | |
- 8.11 | |
pull_request: # On all pull-request changes | |
release: # At release time | |
types: | |
- created | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
coq_version: | |
- 'dev' | |
ocaml_version: | |
- '4.14.2-flambda' | |
target: [ dune ] # hott, disabled for now | |
fail-fast: false | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- name: Docker-Coq-Action | |
uses: coq-community/docker-coq-action@v1 | |
with: | |
opam_file: 'rocq-equations.opam' | |
coq_version: ${{ matrix.coq_version }} | |
ocaml_version: ${{ matrix.ocaml_version }} |