Merge paper version #5
This file contains hidden or 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: Coq Build | |
| on: | |
| push: | |
| branches: ['main'] | |
| pull_request: | |
| branches: ['**'] # for all submitted Pull Requests | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| coq_version: | |
| - '8.20' | |
| - '9.0' | |
| - '9.1' | |
| 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: 'rocq-tensors.opam' | |
| before_install: | | |
| startGroup "Print opam config" | |
| opam update -y; | |
| opam install -y rocq-stdpp; | |
| opam config list; opam repo list; opam list | |
| endGroup | |
| coq_version: ${{ matrix.coq_version }} | |
| ocaml_version: ${{ matrix.ocaml_version }} | |