Remove unnecessary stack access from precond #490
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: Build and test | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install OCaml compiler | |
uses: ocaml/setup-ocaml@v2 | |
with: | |
ocaml-compiler: 5.0 | |
dune-cache: true | |
- name: Install dependencies | |
run: | | |
opam install . --deps-only --with-test | |
- name: Show configuration | |
run: | | |
opam exec -- ocamlc -config | |
opam config list | |
opam exec -- dune printenv | |
opam list | |
- name: Build the test suite | |
run: opam exec -- dune build | |
- name: Run the normal tests | |
run: opam exec -- dune runtest | |
- name: Run the noisy tests | |
run: opam exec -- dune build @launchtests | |
- name: Install the OPAM packages | |
run: | | |
opam install --with-test . |