[[]]
= "Basic task"
= "Simple single command"
= """
[tasks.build]
run = "cargo build"
"""
[[]]
= "Run tests"
= "Run cargo test"
= """
[tasks.test]
run = "cargo test"
"""
[[]]
= "Lint + format check"
= "Clippy and fmt in serial"
= """
[tasks.lint]
run_serial = ["cargo clippy", "cargo fmt --check"]
fail_hook = { suggest_command = "plz fix" }
"""