Skip to content

Reimplement the runtimes in tagless final style #225

Reimplement the runtimes in tagless final style

Reimplement the runtimes in tagless final style #225

Workflow file for this run

name: Build & test
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches:
- master
pull_request:
branches:
- master
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
test:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
ocaml-compiler:
- 5.1.x
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use 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 fmt
- run: opam exec -- dune build
- run: opam exec -- dune runtest