Update eff.opam for OCaml 5.2 #24
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup OCaml | |
uses: avsm/setup-ocaml@v1 | |
- name: Install Opam packages | |
run: opam pin add -n .; opam install eff --deps-only | |
- name: Format | |
run: opam exec -- make format | |
- name: Test | |
run: opam exec -- make test |