package-cache/.woodpecker/lint.yml

13 lines
426 B
YAML
Raw Normal View History

2022-08-20 23:27:15 +00:00
---
pipeline:
shellcheck:
image: pipelinecomponents/shellcheck
2022-08-23 18:43:52 +00:00
group: lint
commands:
- find . -name .git -type d -prune -o -type f -name \*.sh -print0 | xargs -0 -r -t -n1 shellcheck
2022-08-20 23:27:15 +00:00
hadolint:
image: pipelinecomponents/hadolint
2022-08-23 18:43:52 +00:00
group: lint
2022-08-20 23:27:15 +00:00
commands:
- find . -name .git -type d -prune -o -type f \( -name Dockerfile\* -or -name Containerfile\* \) -print0 | xargs -0 -r -t -n1 hadolint