File tree Expand file tree Collapse file tree 2 files changed +27
-6
lines changed Expand file tree Collapse file tree 2 files changed +27
-6
lines changed Original file line number Diff line number Diff line change
1
+ name : Build Docs
2
+ on :
3
+ push :
4
+ pull_request :
5
+ workflow_dispatch :
6
+
7
+ jobs :
8
+ docs :
9
+ name : Dry-run docs build
10
+ runs-on : ubuntu-latest
11
+
12
+ steps :
13
+ - uses : actions/checkout@v2
14
+
15
+ - name : Initialize Python 3.7
16
+ uses : actions/setup-python@v1
17
+ with :
18
+ python-version : 3.7
19
+
20
+ - name : Install dependencies
21
+ run : |
22
+ python -m pip install --upgrade pip
23
+ pip install -r docs/requirements.txt
24
+
25
+ - name : Build docs
26
+ run : sphinx-build docs docs/_build
27
+
Original file line number Diff line number Diff line change 1
1
alabaster == 0.7.13
2
2
babel == 2.12.1
3
3
certifi == 2022.12.7
4
- charset-normalizer == 3.1.0
5
- docutils == 0.17.1
6
4
idna == 2.10
7
5
imagesize == 1.4.1
8
- jinja2 == 2.11.3
9
6
jsonpointer == 2.3
10
- markupsafe == 1.1.1
11
- packaging == 20.9
12
- pygments == 2.7.4
13
7
pyparsing == 2.4.7
14
8
pytz == 2023.3
15
9
pyyaml == 5.4.1
You can’t perform that action at this time.
0 commit comments