Documentation of the internal Core type checker. #271
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: Run tests | |
on: | |
push: | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ocaml/setup-ocaml@v2 | |
with: | |
ocaml-compiler: 5.1.1 | |
- run: opam install dune | |
- run: opam exec -- dune build | |
- run: opam exec -- dune install | |
- run: eval $(opam env) && ./test.sh dbl ./test/test_suite | |