Skip to content

Commit b576abb

Browse files
authored
Merge pull request #239 from mkdocstrings/ci-fix-check-docs
ci: Fix check-docs job
2 parents 34694da + db039c8 commit b576abb

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,10 @@ jobs:
4545
poetry update
4646
4747
- name: Check if the documentation builds correctly
48-
run: poetry run duty check-docs
48+
run: |
49+
mkdir -p build/coverage
50+
touch build/coverage/index.html
51+
poetry run duty check-docs
4952
5053
- name: Check the code quality
5154
run: poetry run duty check-code-quality

0 commit comments

Comments
 (0)