Skip to content

fixed shift/reduce conflicts in parser #59

fixed shift/reduce conflicts in parser

fixed shift/reduce conflicts in parser #59

Workflow file for this run

name: Builds, tests & co
on:
- push
- pull_request
permissions: read-all
jobs:
build:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout tree
uses: actions/checkout@v4
- name: Set-up OCaml
uses: ocaml/setup-ocaml@v3
with:
ocaml-compiler: 5
- run: opam install dune
- run: opam exec -- dune build --profile release
- name: Run tests
run: opam exec -- dune runtest