mirror of
https://github.com/ansible-collections/hetzner.hcloud
synced 2024-11-10 06:34:13 +00:00
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:
parent
74f6eff294
commit
79d52d3621
1 changed files with 6 additions and 2 deletions
8
Makefile
8
Makefile
|
@ -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 \
|
||||
|
|
Loading…
Reference in a new issue