A slightly better formatting of issues #49
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: | |
types: [synchronize, opened, reopened] | |
push: | |
branches: [main] | |
jobs: | |
build: | |
name: ${{ matrix.os }} / OCaml ${{ matrix.ocaml-compiler }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
ocaml-compiler: | |
- 5.2.1 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install libcurl development package | |
run: sudo apt-get update && sudo apt-get install -y libcurl4-openssl-dev | |
- name: Use OCaml ${{ matrix.ocaml-compiler }} | |
uses: ocaml/setup-ocaml@v3 | |
with: | |
ocaml-compiler: ${{ matrix.ocaml-compiler }} | |
- run: opam install . --deps-only --with-doc --with-test | |
- run: opam exec -- dune build | |
- run: opam exec -- dune runtest | |
lint-doc: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install libcurl development package | |
run: sudo apt-get update && sudo apt-get install -y libcurl4-openssl-dev | |
- name: Setup OCaml | |
uses: ocaml/setup-ocaml@v3 | |
with: | |
ocaml-compiler: 5.2.1 | |
dune-cache: true | |
- name: Lint doc | |
uses: ocaml/setup-ocaml/lint-doc@v2 | |
lint-fmt: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install libcurl development package | |
run: sudo apt-get update && sudo apt-get install -y libcurl4-openssl-dev | |
- name: Setup OCaml | |
uses: ocaml/setup-ocaml@v3 | |
with: | |
ocaml-compiler: 5.2.1 | |
dune-cache: true | |
- name: Lint fmt | |
uses: ocaml/setup-ocaml/lint-fmt@v2 |