File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -11,30 +11,42 @@ name: CI
11
11
jobs :
12
12
build :
13
13
name : Build
14
+
14
15
runs-on : ubuntu-latest
16
+
15
17
steps :
16
18
- name : " Checkout"
17
19
uses : actions/checkout@v2
20
+
18
21
- name : " Set up Python 3.x"
19
22
uses : actions/setup-python@v1
20
23
with :
21
24
python-version : ' 3.7' # Semantic version range syntax or exact version of a Python version
25
+
22
26
- name : " Display Python version"
23
27
run : python -c "import sys; print(sys.version)"
28
+
24
29
- name : " Install Sphinx dependencies"
25
30
run : sudo apt-get install python-dev build-essential
31
+
26
32
- name : " Install Sphinx"
27
33
run : pip install --user sphinx
28
- - name : " INstall custom requirements via pip"
34
+
35
+ - name : " Install custom requirements via pip"
29
36
run : pip install -r _build/.requirements.txt
37
+
30
38
- name : " Build documentation"
31
39
run : make -C _build SPHINXOPTS=-nW html
40
+
32
41
doctor-rst :
33
42
name : DOCtor-RST
43
+
34
44
runs-on : ubuntu-latest
45
+
35
46
steps :
36
47
- name : " Checkout"
37
48
uses : actions/checkout@v2
49
+
38
50
- name : " Run DOCtor-RST"
39
51
uses : docker://oskarstark/doctor-rst
40
52
with :
You can’t perform that action at this time.
0 commit comments