We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4225f9 commit f0ac42bCopy full SHA for f0ac42b
.github/workflows/test.yml
@@ -29,6 +29,26 @@ jobs:
29
- name: Test with tox
30
run: poetry run tox
31
32
+ test-docs:
33
+ runs-on: ubuntu-latest
34
+ steps:
35
+ - uses: actions/[email protected]
36
+
37
+ - name: Setup Python
38
+ uses: actions/[email protected]
39
+ with:
40
+ python-version: "3.13" # use latest Python version
41
42
+ - name: Install tox
43
+ run: pipx install --python $(which python) tox
44
45
+ - name: Generate docs
46
+ run: tox -e docs
47
48
+ - name: Check if repo docs are up to date
49
+ run: |
50
+ git diff --exit-code HEAD
51
52
test-deps:
53
54
runs-on: ${{ matrix.os }}
0 commit comments