mirror of
https://github.com/pezkuwichain/revive-differential-tests.git
synced 2026-06-21 05:01:06 +00:00
Switch to cargo-make
This commit is contained in:
@@ -1,15 +0,0 @@
|
|||||||
.PHONY: format clippy test machete
|
|
||||||
|
|
||||||
format:
|
|
||||||
cargo fmt --all -- --check
|
|
||||||
|
|
||||||
clippy:
|
|
||||||
cargo clippy --all-features --workspace -- --deny warnings
|
|
||||||
|
|
||||||
machete:
|
|
||||||
cargo install cargo-machete
|
|
||||||
cargo machete crates
|
|
||||||
|
|
||||||
test: format clippy machete
|
|
||||||
cargo test --workspace -- --nocapture
|
|
||||||
|
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
[config]
|
||||||
|
default_to_workspace = false
|
||||||
|
|
||||||
|
[tasks.machete]
|
||||||
|
command = "cargo"
|
||||||
|
args = ["machete", "crates"]
|
||||||
|
install_crate = "cargo-machete"
|
||||||
|
|
||||||
|
[tasks.fmt-check]
|
||||||
|
command = "cargo"
|
||||||
|
args = ["fmt", "--all", "--", "--check"]
|
||||||
|
install_crate = "rustfmt"
|
||||||
|
|
||||||
|
[tasks.clippy]
|
||||||
|
command = "cargo"
|
||||||
|
args = ["clippy", "--all-features", "--workspace", "--", "--deny", "warnings"]
|
||||||
|
install_crate = "clippy"
|
||||||
|
|
||||||
|
[tasks.test]
|
||||||
|
command = "cargo"
|
||||||
|
args = ["test", "--workspace", "--", "--nocapture"]
|
||||||
Reference in New Issue
Block a user