sidekick/.github/workflows/main.yml
2022-07-14 22:29:48 -04:00

30 lines
818 B
YAML

name: build
on:
push:
pull_request:
branches:
- master
jobs:
run:
name: build
strategy:
matrix:
os:
- ubuntu-latest
#- windows-latest # see https://github.com/ocaml/setup-ocaml/issues/361
#- macos-latest # clogs CI
ocaml-compiler:
- 4.08.x
- 4.14.x
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
- run: opam pin -n .
- run: opam depext -yt sidekick sidekick-base sidekick-bin
- run: opam install -t . --deps-only
- run: opam exec -- dune build --ignore-promoted-rules
- run: opam exec -- dune runtest --ignore-promoted-rules
if: ${{ matrix.os == 'ubuntu-latest'}}