Skip to content

Initial release commit #1

Initial release commit

Initial release commit #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up OCaml
uses: ocaml/setup-ocaml@v3
with:
ocaml-compiler: '4.14'
- name: Install dependencies
run: opam install . --deps-only --yes
- name: Build
run: opam exec -- dune build