Add 9.2 to CI #13
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| rocq: ["9.1.1", "9.2.0"] | |
| fail-fast: false | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| - name: Install OCaml | |
| uses: ocaml/setup-ocaml@v3 | |
| with: | |
| ocaml-compiler: 5.2.1 | |
| dune-cache: true | |
| - name: Install opam dependencies | |
| run: | | |
| opam repo add rocq-released https://rocq-prover.org/opam/released | |
| opam pin add --no-action --kind version rocq-core ${{ matrix.rocq }} | |
| opam install . --deps-only | |
| - name: Dune build | |
| run: | | |
| opam exec -- dune build | |
| opam exec -- dune build --profile ltac2 |