From 86b6f02b96acc9489c031119ee36371984cfd0c8 Mon Sep 17 00:00:00 2001 From: Bastian de Byl Date: Fri, 25 Sep 2020 13:24:47 -0400 Subject: [PATCH] Changed lint base image --- .drone.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 16952d1..f6de903 100644 --- a/.drone.yml +++ b/.drone.yml @@ -8,4 +8,8 @@ platform: steps: - name: lint - image: bdebyl/python-make + image: cytopia/ansible-lint + command: + - export YML_FILES="$(find ansible/ -name '*.yml' -not -name '*vault*')" + - ansible-lint -x 701 "$YML_FILES" + - yamllint "$YML_FILES"