Skip to content

fix CI status in README #18

fix CI status in README

fix CI status in README #18

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
branches:
- '**'
permissions: read-all
jobs:
build:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
ocaml-compiler:
- "4.14"
- "5.1"
runs-on: ${{ matrix.os }}
steps:
- name: Checkout tree
uses: actions/checkout@v4
- name: Set-up OCaml ${{ matrix.ocaml-compiler }}
uses: ocaml/setup-ocaml@v3
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
- run: |
opam install . --deps-only --with-test
opam exec -- dune build
opam exec -- dune runtest