Skip to content

Main workflow

Main workflow #42

Workflow file for this run

name: Main workflow
on:
pull_request:
push:
schedule:
# Prime the caches every Monday
- cron: 0 1 * * MON
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout tree
uses: actions/checkout@v4
- name: Set-up OCaml
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: "5.2"
allow-prerelease-opam: true
- run: opam install lwt_domain --deps-only --with-test
- run: opam exec -- dune build
- run: opam exec -- dune runtest