Replace right squiggle arrow with thick arrow (#53) #120
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: dune::build | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
strategy: | |
matrix: | |
include: | |
- ocaml-compiler: "ocaml-base-compiler.5.0.0" | |
with-doc: true | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v3 | |
- name: 🚒 Use OCaml ${{ matrix.ocaml-compiler }} | |
uses: ocaml/setup-ocaml@v2 | |
with: | |
ocaml-compiler: ${{ matrix.ocaml-compiler }} | |
- name: ⌛ install dependencies | |
run: opam install . --deps-only --with-test --locked | |
- name: 🔨 Dune Build | |
run: opam exec -- dune build | |
- name: 🧪 Run Tests | |
run: opam exec -- dune runtest |