Last active
September 30, 2020 22:29
-
-
Save neonphog/f034944d6960f72f2e1cb18c2961457b to your computer and use it in GitHub Desktop.
Test Common Cargo Makefile.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[tasks.version] | |
clear = true | |
condition = { rust_version = { min = "1.0.0", max = "1.44.0" } } | |
script = ["echo rustc must be at least 1.45.0", "exit 1"] | |
[tasks.format] | |
clear = true | |
install_crate = "rustfmt" | |
command = "cargo" | |
args = ["fmt"] | |
[tasks.check_fmt] | |
clear = true | |
install_crate = "rustfmt" | |
command = "cargo" | |
args = ["fmt", "--", "--check"] | |
[tasks.clippy] | |
clear = true | |
install_crate = "clippy" | |
command = "cargo" | |
args = ["clippy"] | |
[tasks.test] | |
clear = true | |
env = { "RUST_BACKTRACE" = "1" } | |
command = "cargo" | |
args = ["test", "--all-features"] | |
[tasks.default] | |
clear = true | |
dependencies = ["version", "check_fmt", "clippy", "test"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment