From: Alexander Barton Date: Thu, 6 Jul 2023 15:29:59 +0000 (+0200) Subject: ansible-lint includes yamllint, don't run it twice X-Git-Tag: rel-1-0-0~7 X-Git-Url: https://arthur.ath.cx/gitweb/?a=commitdiff_plain;h=f7ec6bf539d6e95f37753fc1ae87d55af7de1e4c;p=ansible-collection-boilerplate.git ansible-lint includes yamllint, don't run it twice --- diff --git a/Makefile.boilerplate b/Makefile.boilerplate index bac3491..d469705 100644 --- a/Makefile.boilerplate +++ b/Makefile.boilerplate @@ -13,8 +13,6 @@ this_dir:=$(shell cd $(dir $(this_makefile_path));pwd) check-ansible: $(VENV_BIN)/ansible-lint # Check Ansible executable ... "$(VENV_BIN)"/ansible --version -# Check YAML files ... - "$(VENV_BIN)"/yamllint . # Run ansible-playbook syntax check, when a "site play" is found ... ifneq ("$(wildcard playbooks/site.yml)","") "$(VENV_BIN)"/ansible-playbook --syntax-check playbooks/site.yml