also run clippy

This commit is contained in:
crapStone 2024-10-01 23:01:16 +02:00
parent 1302c91b7b
commit b2d480496b
No known key found for this signature in database
GPG Key ID: 22D4BF0CF7CC29C8
1 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,5 @@
steps: steps:
test: lint:
image: rust image: rust
environment: environment:
RUST_BACKTRACE: 1 RUST_BACKTRACE: 1
@ -7,5 +7,7 @@ steps:
commands: commands:
- rustup default stable - rustup default stable
- cargo fmt --check - cargo fmt --check
- cargo clippy
failure: ignore # TODO: remove this when all clippy problems were addressed
when: when:
event: [pull_request, push, tag] event: [pull_request, push, tag]