diff options
| author | Michael Grote | 2024-05-08 14:08:15 +0200 |
|---|---|---|
| committer | Michael Grote | 2024-05-08 14:20:14 +0200 |
| commit | d688b8fd77ee7b920b164c2ef4494294e9f2e393 (patch) | |
| tree | 737bde718f7e19225df48d884f2f03b70857cd96 /.woodpecker | |
| parent | 547d6865a7a981ae4ffaef704047fbd94eac2edd (diff) | |
ci: fix
Diffstat (limited to '.woodpecker')
| -rw-r--r-- | .woodpecker/lint.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.woodpecker/lint.yml b/.woodpecker/lint.yml index 199fc63..0b425d2 100644 --- a/.woodpecker/lint.yml +++ b/.woodpecker/lint.yml @@ -19,13 +19,13 @@ steps: pylint: image: wpengine/pylint:terraform-1.8.2 commands: - - pylint . + - pylint app.py when: - event: [push, pull_request] evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"' shellcheck: - image: "koalaman/shellcheck-alpine:v0.10.0" + image: koalaman/shellcheck-alpine:v0.10.0 commands: - | find . -type f -not -path './.git/*' -not -path './collections/*' -exec file {} \; | while IFS= read -r line; do |