Skip to content

main

main #140

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:
os:
- ubuntu-latest
- macos-latest
ocaml-compiler:
- ocaml-base-compiler.5.1.0
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Use OCaml ${{ matrix.ocaml-compiler }}
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
opam-repositories: |
default: https://github.com/ocaml/opam-repository.git
opam-depext: false
- run: opam install . --deps-only --with-test
- run: opam exec -- dune build