fix: do not leak let bind and force Stdlib usage #157
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build & Test | |
on: | |
pull_request: | |
push: | |
schedule: | |
# Prime the caches every Monday | |
- cron: 0 1 * * MON | |
permissions: read-all | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- macos-latest | |
- ubuntu-latest | |
ocaml-compiler: | |
- "5.1" | |
allow-prerelease-opam: | |
- true | |
opam-repositories: | |
- |- | |
default: https://github.com/ocaml/opam-repository.git | |
# include: | |
# - os: windows-latest | |
# ocaml-compiler: ocaml-variants.5.1.0+options,ocaml-option-mingw | |
# allow-prerelease-opam: false | |
# opam-repositories: |- | |
# windows-5.0: https://github.com/dra27/opam-repository.git#windows-5.0 | |
# sunset: https://github.com/ocaml-opam/opam-repository-mingw.git#sunset | |
# default: https://github.com/ocaml/opam-repository.git | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout tree | |
uses: actions/checkout@v4 | |
- name: Set-up OCaml | |
uses: ocaml/setup-ocaml@v2 | |
with: | |
ocaml-compiler: ${{ matrix.ocaml-compiler }} | |
allow-prerelease-opam: ${{ matrix.allow-prerelease-opam }} | |
opam-repositories: ${{ matrix.opam-repositories }} | |
- run: opam install . --deps-only --with-test | |
- run: opam exec -- dune build | |
- run: opam exec -- dune test |