From 2eea740a666e8ed338315283de4df2c39cad177a Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Wed, 4 Nov 2020 20:15:24 +0100 Subject: [PATCH] Prepare transition to Gitea, set up Drone CI --- .drone.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..d9eadcd --- /dev/null +++ b/.drone.yml @@ -0,0 +1,18 @@ +--- +kind: pipeline +type: docker +name: check + +steps: + - name: yamllint + image: python:3.9-alpine + commands: + - pip install yamllint==1.25.0 + - yamllint -c .yamllint.yml . + + - name: ansible-lint + image: python:3.9-alpine + commands: + - pip install ansible-lint==4.3.7 + - ansible-lint *.yml +...