We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2032bcc commit 5626883Copy full SHA for 5626883
1 file changed
.github/workflows/ci.yml
@@ -42,3 +42,20 @@ jobs:
42
make cov
43
- name: Codecov upload
44
uses: codecov/codecov-action@v2.1.0
45
+
46
+ test-doc:
47
+ name: Test doc build
48
+ runs-on: ubuntu-latest
49
+ steps:
50
+ - uses: actions/checkout@v3
51
+ - name: Set up Python
52
+ uses: actions/setup-python@v3
53
+ with:
54
+ python-version: "3.10"
55
+ - uses: Gr1N/setup-poetry@v7
56
+ - name: Bootstrap test environment
57
+ run: |
58
+ make dev EXTRAS=doc
59
+ - name: Test
60
61
+ make doc
0 commit comments