chore: add venv dependency to lint-docs target (#350)

##### SUMMARY

Missing venv when running lint-docs from a clean repo.
This commit is contained in:
Jonas L 2023-10-09 13:42:59 +02:00 committed by GitHub
parent 74f6eff294
commit 79d52d3621
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 \