-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathMakefile.toml
45 lines (35 loc) · 801 Bytes
/
Makefile.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[env]
CARGO_MAKE_EXTEND_WORKSPACE_MAKEFILE = "true"
[config]
skip_core_tasks = true
[tasks.run]
command = "cargo"
args = ["run"]
[tasks.watch]
command = "cargo"
args = ["watch", "-x", "run"]
[tasks.coverage]
command = "cargo"
args = ["tarpaulin", "--verbose", "--all-features", "--ignore-tests", "--timeout", "120", "--out", "Xml"]
[tasks.ci-flow]
dependencies = [
"format",
"check",
"clippy",
"test"
]
[tasks.format]
command = "cargo"
args = ["fmt", "--verbose", "--", "--check"]
[tasks.check]
command = "cargo"
args = ["check", "--verbose"]
[tasks.clippy]
command = "cargo"
args = ["clippy", "--all-targets", "--all-features", "--verbose", "--", "-D", "warnings"]
[tasks.test]
command = "cargo"
args = ["test", "--verbose"]
[tasks.audit]
command = "cargo"
args = ["audit"]