We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b5cd2c commit 3a3cd43Copy full SHA for 3a3cd43
1 file changed
.github/workflows/tests.yml
@@ -53,6 +53,29 @@ jobs:
53
file: ./coverage.xml
54
fail_ci_if_error: true
55
56
+
57
+ docs:
58
59
+ name: Test documentation build
60
+ runs-on: ubuntu-latest
61
+ steps:
62
+ - uses: actions/checkout@v2
63
+ - name: Set up Python 3.8
64
+ uses: actions/setup-python@v1
65
+ with:
66
+ python-version: 3.8
67
+ - name: Install dependencies
68
+ run: |
69
+ python -m pip install --upgrade pip
70
+ pip install -e .[rtd]
71
72
+ # Build the docs
73
+ - name: Build docs to store
74
75
+ cd docs
76
+ make html-strict
77
78
79
publish:
80
81
name: Publish to PyPi
0 commit comments