Add sub. #129
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: Documentation | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build_doc: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup OCaml | |
uses: avsm/setup-ocaml@v2 | |
with: | |
ocaml-compiler: 4.14.0 | |
- name: Pin locally | |
run: opam pin -y add -n . | |
- name: Install locally | |
run: opam install -y odoc mm | |
- name: Build doc | |
run: opam exec dune build @doc | |
- name: Deploy doc | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: _build/default/_doc/_html |