Skip to content

Update GitHub Actions #7

Update GitHub Actions

Update GitHub Actions #7

Workflow file for this run

name: Build
on:
pull_request:
push:
jobs:
build:
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
ocaml-compiler:
- "4.14"
- "5.1"
include:
- os: windows-latest
ocaml-compiler: "4.14"
runs-on: ${{ matrix.os }}
steps:
- name: Checkout tree
uses: actions/checkout@v4
- name: Set-up OCaml
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
allow-prerelease-opam: true
- run: opam install --deps-only .
- run: opam exec -- make all