Skip to content

feat(parser): add simple test for type annotation #37

feat(parser): add simple test for type annotation

feat(parser): add simple test for type annotation #37

name: Build and test
on:
push:
branches:
- '*'
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup OCaml
uses: ocaml/setup-ocaml@v3
with:
ocaml-compiler: 5
- name: Installing dependencies
run: opam install . --deps-only --with-test
- name: Build
run: opam exec -- dune build
- name: Run tests
run: opam exec -- dune runtest