Skip to content

Commit

Permalink
chore: add venv dependency to lint-docs target (#350)
Browse files Browse the repository at this point in the history
##### SUMMARY

Missing venv when running lint-docs from a clean repo.
  • Loading branch information
jooola authored Oct 9, 2023
1 parent 74f6eff commit 79d52d3
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,12 @@ venv:
lint: venv
venv/bin/pylint plugins

lint-docs:
venv/bin/antsibull-docs lint-collection-docs --plugin-docs .
lint-docs: venv
venv/bin/antsibull-docs lint-collection-docs \
--plugin-docs \
--validate-collection-refs self \
--skip-rstcheck \
.

clean:
git clean -xdf \
Expand Down

0 comments on commit 79d52d3

Please sign in to comment.