From 7ee7793c47c36a83224f255889d61623b641534b Mon Sep 17 00:00:00 2001 From: kleph Date: Tue, 3 Mar 2020 00:53:07 +0100 Subject: [PATCH] [CI] Add shellcheck --- .drone.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.drone.yml b/.drone.yml index d7a1972..24c1efb 100644 --- a/.drone.yml +++ b/.drone.yml @@ -23,6 +23,13 @@ steps: commands: - mdl --style all --warnings . +- name: shellcheck + image: koalaman/shellcheck + environment: + WORKDIR: /drone/src + commands: + - shellcheck *.sh + --- kind: pipeline name: unit tests