Skip to content

main

main #250

Workflow file for this run

name: main
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
# Prime the caches every Monday
- cron: 0 1 * * MON
jobs:
build:
strategy:
matrix:
ocaml-compiler:
- 5.1
- 5.2
- 5.3
os:
- ubuntu-latest
- macos-15
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Use OCaml ${{ matrix.ocaml-compiler }}
uses: ocaml/setup-ocaml@v3
with:
opam-pin: false
opam-depext: false
ocaml-compiler: ${{ matrix.ocaml-compiler }}
- run: opam install . --deps-only --with-test
- run: opam exec -- dune build
- run: opam exec -- dune runtest
- run: |
opam install . --with-dev-setup --with-test --deps-only
opam exec -- dune build @fmt