From 04769a174f026dca2dc4c40df5ef14b1f0650b30 Mon Sep 17 00:00:00 2001 From: Otthorn Date: Fri, 19 Feb 2021 01:02:25 +0100 Subject: [PATCH] Add ShellCheck linter --- .drone.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..cd7ffcc --- /dev/null +++ b/.drone.yml @@ -0,0 +1,10 @@ +--- +kind: pipeline +type: docker +name: lint + +steps: + - name: ShellCheck + image: koalaman/shellcheck-alpine:0.7.1 + commands: shellcheck pdf-optimize +...