Skip to content

Commit fc88452

Browse files
author
Stephan Dilly
committed
fix clippy in CI
1 parent 8def1b6 commit fc88452

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

Makefile

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,19 @@ release-linux-musl:
2525
test:
2626
cargo test --workspace
2727

28-
check:
28+
fmt:
2929
cargo fmt -- --check
30+
31+
clippy:
3032
cargo clean -p gitui -p asyncgit -p scopetime
3133
cargo clippy --all-features
3234

33-
check-pedantic:
34-
cargo fmt -- --check
35+
clippy-pedantic:
3536
cargo clean -p gitui -p asyncgit -p scopetime
3637
cargo clippy --all-features -- -W clippy::pedantic
3738

39+
check: fmt clippy
40+
3841
install:
3942
cargo install --path "."
4043

0 commit comments

Comments
 (0)