From ec03d7fc058dffce9e389fe198a08c0fab043d3b Mon Sep 17 00:00:00 2001 From: "max.mehl" Date: Fri, 8 Sep 2017 11:39:18 +0200 Subject: [PATCH] add hugo syntax check --- .drone.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index d065b4b..cb597bd 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,9 +1,14 @@ pipeline: - build: + quality: image: williamyeh/ansible:debian8 commands: - ansible-playbook -vvv playbook.yml -i hosts --syntax-check + syntaxcheck: + image: publysher/hugo + commands: + - cd site; ./build/build.sh + deploy: image: williamyeh/ansible:debian8 secrets: [ ssh_key ]