Skip to content

Switch to poll.

Switch to poll. #20

Workflow file for this run

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 cry
- name: Build doc
run: opam exec dune build @doc
- name: Deploy doc
uses: JamesIves/github-pages-deploy-action@4.1.6
with:
branch: gh-pages
folder: _build/default/_doc/_html