Skip to content

CI: Run the driver

CI: Run the driver #2

Workflow file for this run

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@v2
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-driver.opam
- name: Run the driver
run: |
opam exec -- dune exec -- odoc_driver -p odoc
echo "Generated $(find _html -name '*.html' | wc -l) pages"