From a70bcc1d4e7b091d84da3131e2708dabb810c885 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan-Jonas=20S=C3=A4mann?= Date: Sat, 20 Jun 2020 22:49:42 +0200 Subject: [PATCH] Add linter pipeline --- .drone.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..e6ff5fc --- /dev/null +++ b/.drone.yml @@ -0,0 +1,12 @@ +--- + +name: playbook +kind: pipeline +type: docker + +steps: +- name: lint + image: alpine:latest + commands: + - apk add git ansible ansible-lint + - ansible-lint -x305,403,701