Skip to content

Merge pull request #24 from Halbaroth/update-lock #6

Merge pull request #24 from Halbaroth/update-lock

Merge pull request #24 from Halbaroth/update-lock #6

Workflow file for this run

name: Build
on:
push:
pull_request:
permissions: {}
env:
OCAML_DEFAULT_VERSION: 4.10.1
# Add OPAMYES=true to the environment, this is usefill to replace `-y` option
# in any opam call
OPAMYES: true
jobs:
build:
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
ocaml-compiler:
- 4.10.1
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
with:
persist-credentials: true
- name: Use OCaml ${{ matrix.ocaml-compiler }}
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
dune-cache: true
- name: Install dependencies
run: opam exec -- opam install -y . --locked --deps-only --with-test
- name: Build ocplib-simplex with opam
run: opam exec -- opam reinstall .
- name: Run tests
run: opam exec -- make test