From 08f853cd2d7ff44e763bf607b730d6d9fcdfdbf1 Mon Sep 17 00:00:00 2001 From: Michael Grote Date: Fri, 3 Nov 2023 19:31:52 +0100 Subject: [PATCH] ci: add shellcheck --- .woodpecker/lint.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.woodpecker/lint.yml b/.woodpecker/lint.yml index 0fcfd5f..176feb0 100644 --- a/.woodpecker/lint.yml +++ b/.woodpecker/lint.yml @@ -11,6 +11,7 @@ steps: event: exclude: - tag + hadolint: image: hadolint/hadolint:latest-debian commands: @@ -19,3 +20,12 @@ steps: event: exclude: - tag + + shellcheck: + image: koalaman/shellcheck-alpine:stable + commands: + - "find . -name *.sh -exec shellcheck {} +" + when: + event: + exclude: + - tag