Skip to content

Add another Docker example in README.md #27

Add another Docker example in README.md

Add another Docker example in README.md #27

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