Broken: Handle all kinds of patterns, yay! #9
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: ci | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
run: | |
name: Build | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
#- windows-latest | |
- macos-latest | |
ocaml-compiler: | |
- 4.08.x | |
#- 4.12.x | |
- 5.1.x | |
runs-on: ${{ matrix.os }} | |
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 printbox printbox-html printbox-md printbox-text | |
- run: opam install -t . --deps-only | |
- run: opam exec -- dune build @all | |
- run: opam exec -- dune runtest |