diff options
Diffstat (limited to '.woodpecker/lint.yml')
| -rw-r--r-- | .woodpecker/lint.yml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/.woodpecker/lint.yml b/.woodpecker/lint.yml new file mode 100644 index 0000000..0fcfd5f --- /dev/null +++ b/.woodpecker/lint.yml @@ -0,0 +1,21 @@ +--- +kind: pipeline +type: docker +name: linting +steps: + gitleaks: + image: zricethezav/gitleaks:latest + commands: + - gitleaks detect --no-git --verbose --source $CI_WORKSPACE + when: + event: + exclude: + - tag + hadolint: + image: hadolint/hadolint:latest-debian + commands: + - hadolint Dockerfile + when: + event: + exclude: + - tag |