Skip to content

GA(deps): Bump ocaml/setup-ocaml from 2 to 3 #142

GA(deps): Bump ocaml/setup-ocaml from 2 to 3

GA(deps): Bump ocaml/setup-ocaml from 2 to 3 #142

Workflow file for this run

name: main
on:
pull_request:
push:
schedule:
# Prime the caches every Monday
- cron: 0 1 * * MON
jobs:
build:
strategy:
matrix:
ocaml-compiler:
- 5.1.1
- 5.2.0
os:
- ubuntu-latest
- macos-14
- macos-14-large
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- 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