File tree Expand file tree Collapse file tree 1 file changed +22
-2
lines changed Expand file tree Collapse file tree 1 file changed +22
-2
lines changed Original file line number Diff line number Diff line change 77
88
99jobs :
10- build :
11-
10+ test :
11+ name : Check tests
1212 runs-on : ${{ matrix.operating-system }}
1313 strategy :
1414 matrix :
2626 run : pip install pytest .[tests]
2727 - name : Run PyTest
2828 run : pytest
29+
30+ check_sphinx_build :
31+ name : Check Sphinx build for docs
32+ runs-on : ubuntu-latest
33+ strategy :
34+ matrix :
35+ python-version : [3.8]
36+ steps :
37+ - name : Checkout
38+ uses : actions/checkout@v2
39+ - name : Set up Python
40+ uses : actions/setup-python@v2
41+ with :
42+ python-version : ${{ matrix.python-version }}
43+ - name : Update pip
44+ run : python -m pip install --upgrade pip
45+ - name : Install dependencies
46+ run : pip install -r docs/requirements.txt
47+ - name : Run Sphinx
48+ run : sphinx-build -b html docs /tmp/_docs_build
You can’t perform that action at this time.
0 commit comments