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
1111jobs :
1212 build :
1313 name : Build
14+
1415 runs-on : ubuntu-latest
16+
1517 steps :
1618 - name : " Checkout"
1719 uses : actions/checkout@v2
20+
1821 - name : " Set up Python 3.x"
1922 uses : actions/setup-python@v1
2023 with :
2124 python-version : ' 3.7' # Semantic version range syntax or exact version of a Python version
25+
2226 - name : " Display Python version"
2327 run : python -c "import sys; print(sys.version)"
28+
2429 - name : " Install Sphinx dependencies"
2530 run : sudo apt-get install python-dev build-essential
31+
2632 - name : " Install Sphinx"
2733 run : pip install --user sphinx
28- - name : " INstall custom requirements via pip"
34+
35+ - name : " Install custom requirements via pip"
2936 run : pip install -r _build/.requirements.txt
37+
3038 - name : " Build documentation"
3139 run : make -C _build SPHINXOPTS=-nW html
40+
3241 doctor-rst :
3342 name : DOCtor-RST
43+
3444 runs-on : ubuntu-latest
45+
3546 steps :
3647 - name : " Checkout"
3748 uses : actions/checkout@v2
49+
3850 - name : " Run DOCtor-RST"
3951 uses : docker://oskarstark/doctor-rst
4052 with :
You can’t perform that action at this time.
0 commit comments