We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53f101c commit 7b413d3Copy full SHA for 7b413d3
1 file changed
.github/workflows/tests.yaml
@@ -61,6 +61,22 @@ jobs:
61
- name: run django tests
62
run: tox -e ${{ matrix.tox }}
63
64
+ docs:
65
+ name: "docs"
66
+ runs-on: ubuntu-latest
67
+ steps:
68
+ - uses: actions/checkout@v4
69
+ - uses: actions/setup-python@v5
70
+ with:
71
+ python-version: '3.12'
72
+ cache: pip
73
+ - name: install dependencies
74
+ run: |
75
+ pip install -e .
76
+ pip install sphinx -r docs/requirements.txt
77
+ - name: build docs
78
+ run: sphinx-build -W -b html docs docs/_build/html
79
+
80
typecheck:
81
name: "typecheck"
82
runs-on: ubuntu-latest
0 commit comments