diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..235c2fa --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ + +.PHONY: syntax yaml + +all: syntax yaml + +syntax: + ansible-playbook site.yml --syntax-check -vv + +yaml: + find . -name \*.yml -exec yamllint {} \;