nextcloud-cronjob/.woodpecker/lint.yml

29 lines
535 B
YAML
Raw Normal View History

2023-11-03 19:23:41 +01:00
---
steps:
gitleaks:
image: zricethezav/gitleaks:latest
commands:
- gitleaks detect --no-git --verbose --source $CI_WORKSPACE
when:
event:
exclude:
- tag
2023-11-03 19:31:52 +01:00
2023-11-03 19:23:41 +01:00
hadolint:
image: hadolint/hadolint:latest-debian
commands:
- hadolint Dockerfile
when:
event:
exclude:
- tag
2023-11-03 19:31:52 +01:00
2023-11-09 08:57:51 +01:00
shellcheck:
image: koalaman/shellcheck-alpine:stable
commands:
2023-11-09 09:06:21 +01:00
- "find . -name *.sh -exec shellcheck -x {} +"
2023-11-09 08:57:51 +01:00
when:
event:
exclude:
- tag