CI: Run the driver #3
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: "Driver" | |
on: | |
- push | |
- pull_request | |
jobs: | |
build: # Check build on various OSes | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
ocaml-compiler: | |
- 5.2.x | |
runs-on: ${{ matrix.os }} | |
steps: | |
# Clone the project | |
- uses: actions/checkout@v2 | |
# Setup | |
- name: Setup OCaml ${{ matrix.ocaml-version }} | |
uses: ocaml/setup-ocaml@v3 | |
with: | |
ocaml-compiler: ${{ matrix.ocaml-compiler }} | |
opam-local-packages: odoc-parser.opam odoc.opam odoc-driver.opam | |
- name: Install dependencies | |
run: opam install -y --deps-only -t ./odoc-parser.opam ./odoc.opam ./odoc-driver.opam | |
- name: Run the driver | |
run: | | |
opam exec -- dune exec -- odoc_driver -p odoc | |
echo "Generated $(find _html -name '*.html' | wc -l) pages" |