Skip to content

Account for statements #16

Account for statements

Account for statements #16

Workflow file for this run

name: CI
on:
push:
jobs:
build:
name: Build
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system:
- ubuntu-latest
ocaml-compiler:
- 4.11.2
steps:
- name: Checkout code
uses: actions/checkout@master
- name: Use OCaml ${{ matrix.ocaml-compiler }}
uses: avsm/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
- run: opam install . --deps-only --with-test
- run: opam exec -- dune build
- run: opam exec -- dune runtest