syui
7b03adda1f
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 9s
26 lines
368 B
TOML
26 lines
368 B
TOML
[tasks.format]
|
|
install_crate = "rustfmt"
|
|
command = "cargo"
|
|
args = ["fmt", "--", "--emit=files"]
|
|
|
|
[tasks.clean]
|
|
command = "cargo"
|
|
args = ["clean"]
|
|
|
|
[tasks.build]
|
|
command = "cargo"
|
|
args = ["build"]
|
|
dependencies = ["clean"]
|
|
|
|
[tasks.test]
|
|
command = "cargo"
|
|
args = ["test"]
|
|
dependencies = ["clean"]
|
|
|
|
[tasks.my-flow]
|
|
dependencies = [
|
|
"format",
|
|
"build",
|
|
"test"
|
|
]
|