fix opam installation script #2
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: OCaml Dune Test | |
on: | |
push: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up OCaml | |
uses: ocaml/setup-ocaml@v1 | |
- name: Install dependencies | |
run: opam install -y ounit2 qcheck bisect_ppx | |
- name: Build and test | |
run: dune build && dune test |