Skip to content

Merge remote-tracking branch 'origin/pr/59' #4

Merge remote-tracking branch 'origin/pr/59'

Merge remote-tracking branch 'origin/pr/59' #4

Workflow file for this run

name: Main workflow
on:
- pull_request
- push
- workflow_dispatch
jobs:
build:
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
ocaml-compiler: 4.14.0
- os: macos-latest
ocaml-compiler: 4.13.1
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Use OCaml ${{ matrix.ocaml-compiler }}
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
- run: opam install -t --deps-only .
- run: opam exec -- make
- run: opam exec -- make -C test