Skip to content

Fix the use of the deprecated Printf.kprintf function #12

Fix the use of the deprecated Printf.kprintf function

Fix the use of the deprecated Printf.kprintf function #12

Workflow file for this run

name: Main workflow
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os:
- ubuntu-latest
ocaml-compiler:
- 4.12.x
- 4.13.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 }}
- name: Install Node
uses: actions/setup-node@v2
with:
node-version: '14'
- run: opam install . --deps-only --with-test
- run: opam exec -- dune build
- run: opam exec -- dune runtest