Skip to content

Add functions, constants #21

Add functions, constants

Add functions, constants #21

Workflow file for this run

name: CI
on:
push:
workflow_dispatch:
jobs:
build:
name: Build
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system:
- ubuntu-latest
ocaml-compiler:
- 4.12.0
- 4.14.0
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