@@ -13,23 +13,29 @@ jobs:
13
13
name : Build
14
14
runs-on : ubuntu-latest
15
15
steps :
16
- - uses : actions/checkout@v2
17
- - name : Set up Python 3.x
16
+ - name : " Checkout"
17
+ uses : actions/checkout@v2
18
+ - name : " Set up Python 3.x"
18
19
uses : actions/setup-python@v1
19
20
with :
20
21
python-version : ' 3.7' # Semantic version range syntax or exact version of a Python version
21
- - name : Display Python version
22
+ - name : " Display Python version"
22
23
run : python -c "import sys; print(sys.version)"
23
- - run : sudo apt-get install python-dev build-essential
24
- - run : pip install --user sphinx
25
- - run : pip install -r _build/.requirements.txt
26
- - run : make -C _build SPHINXOPTS=-nW html
24
+ - name : " Install Sphinx dependencies"
25
+ run : sudo apt-get install python-dev build-essential
26
+ - name : " Install Sphinx"
27
+ run : pip install --user sphinx
28
+ - name : " INstall custom requirements via pip"
29
+ run : pip install -r _build/.requirements.txt
30
+ - name : " Build documentation"
31
+ run : make -C _build SPHINXOPTS=-nW html
27
32
doctor-rst :
28
33
name : DOCtor-RST
29
34
runs-on : ubuntu-latest
30
35
steps :
31
- - uses : actions/checkout@v2
32
- - name : DOCtor-RST
33
- uses : docker://oskarstark/doctor-rst
34
- with :
35
- args : --short
36
+ - name : " Checkout"
37
+ uses : actions/checkout@v2
38
+ - name : " Run DOCtor-RST"
39
+ uses : docker://oskarstark/doctor-rst
40
+ with :
41
+ args : --short
0 commit comments