diff --git a/makefile b/makefile index 76db8d2..ae729be 100644 --- a/makefile +++ b/makefile @@ -1,10 +1,16 @@ ci-requirements: @python -m pip install --upgrade -r ci-requirements.txt +ansible-lint: + @ansible-lint + +yamllint: + @yamllint . + plugins-test: @python -m pytest -vv --cov plugins/filter --cov-report=term-missing plugins/tests plugins-lint: @python -m flake8 plugins -.PHONY: ci-requirements plugins-test plugins-lint +.PHONY: ci-requirements ansible-lint yamllint plugins-test plugins-lint