-
Notifications
You must be signed in to change notification settings - Fork 1
44 lines (37 loc) · 1.22 KB
/
test-doc.yml
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
name: build-docs
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -el {0}
env:
CONDA_SOLVER: libmamba
steps:
- name: Checkout main repository
uses: actions/checkout@v4
#Since we need geant4 for the docs, we use the geant-data cache method from
#condatest.yml, and then update afterwards:
- name: Setup conda environment
uses: ./.github/actions/setup
with:
PYTHON_VERSION: 3.11
USE_MAMBA: true
CACHED_NOARCH_DEF_PY_FILE: ./.github/resources/cached_noarch_definitions.py
CONDA_ENV_FILE : ./.github/resources/conda-setup.yml
- name: Update conda env for docs
#NB: We do NOT add --prune in the next link, since
#conda-setup_extra_for_docs.yml only contains the extra dependencies
run: conda env update --name simplebuild_dgcode --file ./.github/resources/conda-setup_extra_for_docs.yml
- name: Install self
run: python3 -mpip install .
- name: Build documentation
#NB: -W to turn warnings into errors:
run: make html SPHINXOPTS="-W"
working-directory: ./doc/
- name: Check HTML links
run: make linkcheck
working-directory: ./doc/