Skip to content

Instantly share code, notes, and snippets.

@neonphog
Last active September 30, 2020 22:29
Show Gist options
  • Save neonphog/f034944d6960f72f2e1cb18c2961457b to your computer and use it in GitHub Desktop.
Save neonphog/f034944d6960f72f2e1cb18c2961457b to your computer and use it in GitHub Desktop.
Test Common Cargo Makefile.toml
[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