Skip to content

build and test

build and test #59

Workflow file for this run

name: build and test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
# Prime the caches every Monday
- cron: 0 1 * * MON
permissions: read-all
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest]
ocaml-compiler: [5.0, 4.14]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout tree
uses: actions/checkout@v3
- name: Set-up OCaml ${{ matrix.ocaml-compiler }}
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
- run: opam install . --deps-only --with-test --with-doc
- run: opam exec -- dune build
- run: opam exec -- dune runtest