postfix/.woodpecker/lint.yml

30 lines
872 B
YAML
Raw Normal View History

2023-11-03 19:21:11 +01:00
---
steps:
gitleaks:
2024-02-07 15:13:06 +01:00
image: zricethezav/gitleaks:v8.18.2
2023-11-03 19:21:11 +01:00
commands:
- gitleaks detect --no-git --verbose --source $CI_WORKSPACE
when:
2024-02-06 20:16:52 +01:00
- evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
2023-11-03 19:32:03 +01:00
2023-11-03 19:21:11 +01:00
hadolint:
image: pipelinecomponents/hadolint:0.26.1
2023-11-03 19:21:11 +01:00
commands:
- hadolint Dockerfile
when:
2024-02-06 20:16:52 +01:00
- evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
2023-11-03 19:32:03 +01:00
2023-11-09 09:22:41 +01:00
shellcheck:
2024-04-04 20:22:40 +02:00
image: "koalaman/shellcheck-alpine:v0.10.0"
2023-11-09 09:22:41 +01:00
commands:
- |
find . -type f -not -path './.git/*' -not -path './collections/*' -exec file {} \; | while IFS= read -r line; do
if echo "$line" | grep -q "shell script"; then
file_path=$(echo "$line" | awk -F':' '{print $1}')
shellcheck "$file_path"
fi
done
2024-02-06 20:16:52 +01:00
when:
- evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
...