Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[tasks.ci]
description = "task for CI"
dependencies = ["test", "check"]

[tasks.check]
command = "cargo"
args = ["check"]

[tasks.test]
command = "cargo"
args = ["test"]

[tasks.build]
command = "cargo"
args = ["build", "--release", "--all-targets"]