Merge pull request #57 from mabiede/bug/mutated-vowel #124
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, pull_request] | |
jobs: | |
build: | |
name: Build and test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
# Disable macos build for now since it keeps failing with dune not found | |
# - macos-latest | |
- ubuntu-latest | |
ocaml-version: | |
- 4.11.1 | |
- 4.10.1 | |
- 4.09.1 | |
- 4.08.1 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Retrieve opam cache | |
uses: actions/cache@v2 | |
if: runner.os != 'Windows' | |
id: cache-opam | |
with: | |
path: ~/.opam | |
key: v1-${{ runner.os }}-opam-${{ matrix.ocaml-version }}-${{ hashFiles('*.opam.locked') }} | |
restore-keys: | | |
v2-${{ runner.os }}-opam-${{ matrix.ocaml-version }}- | |
- name: Use OCaml ${{ matrix.ocaml-version }} | |
uses: avsm/setup-ocaml@v1 | |
with: | |
ocaml-version: ${{ matrix.ocaml-version }} | |
- name: Install dependencies | |
if: steps.cache-opam.outputs.cache-hit != 'true' | |
run: | | |
opam install -y dune | |
opam install -y . --deps-only --with-doc --with-test --locked --unlock-base | |
- name: Recover from an Opam broken state | |
if: steps.cache-opam.outputs.cache-hit == 'true' | |
run: opam upgrade --fixup | |
- name: Build | |
run: make build | |
- name: Run tests | |
run: make test |