8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba74082 commit 2b1c106Copy full SHA for 2b1c106
.github/workflows/builddoc.yml
@@ -1,6 +1,9 @@
1
-name: Build document
+name: Render documentation
2
3
-on: [push, pull_request]
+on:
4
+ push:
5
+ pull_request:
6
+ workflow_dispatch:
7
8
permissions:
9
contents: read
@@ -9,6 +12,9 @@ concurrency:
12
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
10
13
cancel-in-progress: true
11
14
15
+env:
16
+ FORCE_COLOR: "1"
17
+
18
jobs:
19
build:
20
runs-on: ubuntu-latest
@@ -27,11 +33,11 @@ jobs:
27
33
python -m pip install .[docs]
28
34
- name: Render the documentation
29
35
run: >
30
- python
31
- -X dev
32
- -X warn_default_encoding
- -m sphinx
36
+ sphinx-build
37
-M html ./doc ./build/sphinx
38
+ -T
39
-W
40
+ --jobs=auto
41
-n
42
+ -vvv
43
--keep-going
0 commit comments