From 0d78b9b783e0af4f64b3716eafa8e6ec469d8a93 Mon Sep 17 00:00:00 2001 From: Hadrien Patte Date: Sat, 2 Mar 2019 11:48:41 +0100 Subject: [PATCH] Feat: add yamllint to CI pipeline Signed-off-by: Hadrien Patte --- .gitlab-ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..6ea40a9 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,6 @@ +--- +image: quay.io/ansible/molecule:2.19 + +yamllint: + script: yamllint . +...