python-api-server/.woodpecker/lint.yml

42 lines
1.3 KiB
YAML
Raw Normal View History

2023-11-03 19:26:10 +01:00
---
steps:
gitleaks:
2024-02-07 15:13:44 +01:00
image: zricethezav/gitleaks:v8.18.2
2023-11-03 19:26:10 +01:00
commands:
- gitleaks detect --no-git --verbose --source $CI_WORKSPACE
when:
2024-05-14 21:45:09 +02:00
- event: [push, pull_request, cron]
2024-05-06 23:49:55 +02:00
evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
2023-11-03 19:32:18 +01:00
2023-11-03 19:26:10 +01:00
hadolint:
image: pipelinecomponents/hadolint:0.26.1
2023-11-03 19:26:10 +01:00
commands:
- hadolint Dockerfile
when:
2024-05-14 21:45:09 +02:00
- event: [push, pull_request, cron]
2024-05-06 23:49:55 +02:00
evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
2023-11-03 19:32:18 +01:00
2024-05-08 14:07:10 +02:00
pylint:
image: "registry.mgrote.net/pylint:master"
2024-05-08 14:07:10 +02:00
commands:
- pip3 install --no-cache-dir --break-system-packages -r requirements.txt
- pylint app.py
2024-05-08 14:07:10 +02:00
when:
2024-05-14 21:45:09 +02:00
- event: [push, pull_request, cron]
2024-05-08 14:07:10 +02:00
evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
2023-11-09 09:20:42 +01:00
shellcheck:
image: koalaman/shellcheck-alpine:v0.10.0
2023-11-09 09:20:42 +01:00
commands:
2024-01-29 12:21:03 +01:00
- |
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:17:01 +01:00
when:
2024-05-14 21:45:09 +02:00
- event: [push, pull_request, cron]
2024-05-06 23:49:55 +02:00
evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
2024-01-29 12:21:03 +01:00
...