Skip to content

Commit 5626883

Browse files
committed
.github: add test for doc build
1 parent 2032bcc commit 5626883

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,20 @@ jobs:
4242
make cov
4343
- name: Codecov upload
4444
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+
run: |
61+
make doc

0 commit comments

Comments
 (0)