From bbb29cf25d8c2dfe5c9fc89569d10a6588d47453 Mon Sep 17 00:00:00 2001 From: Wojciech Kozlowski Date: Sun, 11 Dec 2022 22:29:25 +0100 Subject: [PATCH] Add ansible and yaml lints to makefile --- makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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