move print_value test to ensure no concurrency issues #53
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: OCaml Dune Test | |
on: | |
push: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up OCaml | |
uses: ocaml/setup-ocaml@v2 | |
with: | |
ocaml-compiler: 5.2.0 | |
- name: Install dependencies | |
run: opam install -y dune ounit2 qcheck bisect_ppx base64 csv | |
- name: Build and test | |
run: opam exec -- dune build && opam exec -- dune test |