mirror of
https://github.com/gitui-org/gitui
synced 2026-05-23 08:58:21 +00:00
fix clippy in CI
This commit is contained in:
parent
8def1b6bcd
commit
fc884525be
1 changed files with 6 additions and 3 deletions
9
Makefile
9
Makefile
|
|
@ -25,16 +25,19 @@ release-linux-musl:
|
|||
test:
|
||||
cargo test --workspace
|
||||
|
||||
check:
|
||||
fmt:
|
||||
cargo fmt -- --check
|
||||
|
||||
clippy:
|
||||
cargo clean -p gitui -p asyncgit -p scopetime
|
||||
cargo clippy --all-features
|
||||
|
||||
check-pedantic:
|
||||
cargo fmt -- --check
|
||||
clippy-pedantic:
|
||||
cargo clean -p gitui -p asyncgit -p scopetime
|
||||
cargo clippy --all-features -- -W clippy::pedantic
|
||||
|
||||
check: fmt clippy
|
||||
|
||||
install:
|
||||
cargo install --path "."
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue