aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Grote2023-11-03 19:32:18 +0100
committerMichael Grote2023-11-03 19:32:18 +0100
commit070e57fed72da706bec24f630ad8cc03337c0ea9 (patch)
tree55ed65196f11f4c12c557354849a758c7d9a5110
parent5ee4473e77e0063ffc831fc4a1e066374cf4847e (diff)
ci: add shellcheck
-rw-r--r--.woodpecker/lint.yml10
1 files changed, 10 insertions, 0 deletions
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