Skip to content

Merge branch 'master' of https://github.com/parof/rat #21

Merge branch 'master' of https://github.com/parof/rat

Merge branch 'master' of https://github.com/parof/rat #21

Workflow file for this run

name: tests
on:
pull_request:
push:
jobs:
build:
strategy:
matrix:
os:
- macos-latest
- ubuntu-latest
# - windows-latest
ocaml-compiler:
- 4.14.x
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Use OCaml ${{ matrix.ocaml-compiler }}
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
- run: make deps
- run: make
- run: make test