Skip to content

Add Union Operator; Update AST #159

Add Union Operator; Update AST

Add Union Operator; Update AST #159

Workflow file for this run

name: Test
on:
push:
pull_request:
branches: [main]
# Ensures that only the latest commit of a PR can execute the actions.
# Useful for cancelling job when a sequence of commits are quickly added.
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set-up OCaml
uses: ocaml/setup-ocaml@v3
with:
ocaml-compiler: 5
- name: Install dependencies
working-directory: rio
run: |
opam install . --deps-only
- name: Rio tests
working-directory: rio
run: |
opam exec -- dune build
opam exec -- dune test