summaryrefslogtreecommitdiff
path: root/.github/workflows/doc.yml
blob: 3070d192bc531cdc58d525ab819669d5ae1ae9e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: Doc build

on:
  push:
    branches:
      - master

jobs:
  build_doc:
    runs-on: ubuntu-latest
    steps:
    - name: Checkout code
      uses: actions/checkout@v1
    - name: Setup OCaml
      uses: ocaml/setup-ocaml@v2
      with:
        ocaml-compiler: 4.14.x
    - name: Pin locally
      run: opam pin -y add --no-action .
    - name: Install locally
      run: opam install -y --with-doc sedlex
    - name: Build doc
      run: opam exec dune build @doc
    - name: Deploy doc
      uses: JamesIves/github-pages-deploy-action@4.1.4
      with:
        branch: gh-pages
        folder: _build/default/_doc/_html