Skip to content

Merge pull request #67 from ahelwer/patch-1 #62

Merge pull request #67 from ahelwer/patch-1

Merge pull request #67 from ahelwer/patch-1 #62

Workflow file for this run

name: ci
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
# - macos-latest
ocaml-compiler:
- 5.2.x
- 5.1.x
- 5.0.x
- 4.14.x
- 4.13.x
- 4.12.x
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up OCaml ${{ matrix.ocaml-compiler }}
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
- name: Install dependencies
run: opam install . --deps-only
- name: Build
run: opam exec -- dune build