Skip to content

faster CI

faster CI #9

Workflow file for this run

name: build
on:
push:
pull_request:
branches:
- master
jobs:
run:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
#os: [macos-latest, ubuntu-latest, windows-latest]
os: [ubuntu-latest]
ocaml-compiler:
- 4.08.x
- 4.14.x
steps:
- uses: actions/checkout@v2
- uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
dune-cache: true
allow-prerelease-opam: true
- run: opam pin -n .
- run: opam depext -yt nunchaku
- run: opam install -t . --deps-only
- run: opam exec -- dune build @install --profile=release
- run: opam exec -- dune runtest --profile=release