Refactoring: From Coq -> From Stdlib #108
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: coqchk | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest # container actions require GNU/Linux | |
| strategy: | |
| matrix: | |
| coq_version: | |
| - '9.0.1' | |
| ocaml_version: ['default'] | |
| fail-fast: true # don't stop jobs if one fails | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: rocq-community/docker-rocq-action@v1 | |
| with: | |
| opam_file: 'coq-libtx-storage.opam' | |
| coq_version: ${{ matrix.coq_version }} | |
| ocaml_version: ${{ matrix.ocaml_version }} |