Allow color in help messages #83
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: test | |
on: | |
push: | |
branches: | |
- '*' | |
jobs: | |
fmt: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set-up OCaml | |
uses: ocaml/setup-ocaml@v2 | |
with: | |
ocaml-compiler: 4.14.1 | |
opam-pin: false | |
opam-depext: false | |
- uses: actions/checkout@v3 | |
- run: opam switch create . --no-install | |
- run: opam install -y dune ocamlformat.0.26.2 | |
- run: opam exec -- dune fmt | |
build-and-run-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: 'Run "apt update" so setup-ocaml can install depexts' | |
run: | | |
sudo apt update | |
- name: Set-up OCaml | |
uses: ocaml/setup-ocaml@v2 | |
with: | |
ocaml-compiler: 4.14.1 | |
- run: opam install ppx_inline_test ppx_expect | |
- run: opam exec -- dune test |