We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a06e2e8 commit 8099593Copy full SHA for 8099593
1 file changed
.github/workflows/main.yml
@@ -46,3 +46,24 @@ jobs:
46
- name: Run tests
47
run: |
48
python -m pytest
49
+
50
+ docs:
51
+ runs-on: ubuntu-latest
52
+ steps:
53
+ - name: Set up Python
54
+ uses: actions/setup-python@v1
55
+ with:
56
+ python-version: 3.8
57
+ - name: Double-check Python version
58
+ run: |
59
+ python --version
60
+ - uses: actions/checkout@v2
61
+ - name: Install doc dependencies
62
63
+ python -m pip install -r doc/requirements.txt
64
+ - name: Create HTML docs
65
66
+ python -m sphinx doc _build/html -d _doctrees -W -b html
67
+ - name: Check for broken links
68
69
+ python -m sphinx doc _build/linkcheck -d _doctrees -W -b linkcheck
0 commit comments