-
Notifications
You must be signed in to change notification settings - Fork 9
54 lines (51 loc) · 1.46 KB
/
Documenter.yaml
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: Documentation
on:
pull_request:
paths:
- '.github/workflows/Documenter.yml'
- 'docs/**'
- 'lib/**'
- 'src/**'
push:
branches:
- main
tags: '*'
paths:
- '.github/workflows/Documenter.yml'
- 'docs/**'
- 'lib/**'
- 'src/**'
concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: only if it is a pull request build.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
jobs:
docs:
name: Documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: '1'
- uses: julia-actions/cache@v2
- name: Instantiate docs environment
run: |
julia --color=yes --project=docs -e '
using Pkg
Pkg.instantiate()'
env:
JULIA_PKG_SERVER_REGISTRY_PREFERENCE: eager
- name: Run doctests
run: |
julia --color=yes --project=docs -e '
using Documenter: DocMeta, doctest
using Reactant
DocMeta.setdocmeta!(Reactant, :DocTestSetup, :(using Reactant); recursive=true)
doctest(Reactant)'
- name: Build documentation
run: julia --color=yes --project=docs docs/make.jl
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}