From b1ecda17289afd1614905214f5874b9c6aeccd80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torma=20Krist=C3=B3f?= Date: Thu, 27 Feb 2020 20:56:38 +0100 Subject: [PATCH] drone config --- .drone.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..a83862b --- /dev/null +++ b/.drone.yml @@ -0,0 +1,16 @@ +kind: pipeline +type: docker +name: default + +steps: +- name: shellcheck + image: ubuntu:18.04 + commands: + - apt update && apt upgrade -y && apt install -y shellcheck + - for file in $(find . -type f -name \"*.sh\"); do shellcheck --format=gcc $file; done; + - shellcheck --format=gcc woolsey + - shellcheck --format=gcc remoteapp + +trigger: + branch: + - master