Update colibri2 and dolmen #226
Workflow file for this run
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 Z3 | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test-z3: | |
runs-on: ubuntu-latest | |
env: | |
OPAMCONFIRMLEVEL: unsafe-yes | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Setup OCaml 4.14 | |
uses: ocaml/setup-ocaml@v3 | |
with: | |
ocaml-compiler: "4.14" | |
dune-cache: true | |
- name: Install dependencies | |
run: | | |
opam install -y . --deps-only --with-test | |
opam install z3 | |
- name: Build | |
run: opam exec -- dune build @install | |
- name: Test | |
run: opam exec -- dune runtest |