From b2d480496b2f96ab072b706f93bca0324d543d92 Mon Sep 17 00:00:00 2001 From: crapStone Date: Tue, 1 Oct 2024 23:01:16 +0200 Subject: [PATCH] also run clippy --- .woodpecker/lint.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.woodpecker/lint.yaml b/.woodpecker/lint.yaml index 9773458..f62cafd 100644 --- a/.woodpecker/lint.yaml +++ b/.woodpecker/lint.yaml @@ -1,5 +1,5 @@ steps: - test: + lint: image: rust environment: RUST_BACKTRACE: 1 @@ -7,5 +7,7 @@ steps: commands: - rustup default stable - cargo fmt --check + - cargo clippy + failure: ignore # TODO: remove this when all clippy problems were addressed when: event: [pull_request, push, tag]