Skip to content

Cleanup parametric mappings #428

Cleanup parametric mappings

Cleanup parametric mappings #428

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
ocaml-compiler:
- "4.14"
- "5.1"
- "5.2"
runs-on: ${{ matrix.os }}
env:
# allow opam depext to yes package manager prompts
OPAMCONFIRMLEVEL: unsafe-yes
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup OCaml ${{ matrix.ocaml-compiler }}
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
dune-cache: true
allow-prerelease-opam: true
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: opam install -y . --deps-only --with-test
- name: Build
run: opam exec -- dune build @install