Skip to content

Migrate to OCaml 5.4.1 #208

Migrate to OCaml 5.4.1

Migrate to OCaml 5.4.1 #208

Workflow file for this run

name: Build & Test
on:
- push
- pull_request
jobs:
build:
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
ocaml-compiler:
- 5
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup OCaml
uses: avsm/setup-ocaml@v3
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
- name: Set git user
run: |
git config --global user.name github-actions
git config --global user.email github-actions-bot@users.noreply.github.com
- name: Install Dependencies
run: opam install . --deps-only --with-test --with-doc
- name: Build & Test
run: opam exec dune build @install @runtest @doc