-
Notifications
You must be signed in to change notification settings - Fork 1
/
bacon.toml
46 lines (37 loc) · 1.16 KB
/
bacon.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
46
# This is a configuration file for the bacon tool
# More info at https://github.com/Canop/bacon
default_job = "check"
[jobs]
[jobs.check]
command = ["cargo", "check", "--color", "always"]
need_stdout = false
[jobs.check-all]
command = ["cargo", "check", "--all-targets", "--color", "always"]
need_stdout = false
watch = ["tests", "benches", "examples"]
[jobs.clippy]
command = ["cargo", "clippy", "--color", "always", "--all-features"]
need_stdout = false
[jobs.test]
command = ["cargo", "test", "--color", "always", "--all-features"]
need_stdout = true
watch = ["tests", "README.md", "src/level_1/README.md", "src/level_1/YYear.md"]
[jobs.doctest]
command = ["cargo", "test", "--color", "always", "--doc"]
need_stdout = true
watch = ["tests", "README.md", "src/level_1/README.md", "src/level_1/YYear.md"]
[jobs.doc]
command = ["cargo", "doc", "--color", "always", "--no-deps"]
watch = ["README.md", "src/level_1/README.md", "src/level_1/YYear.md"]
[jobs.docs-rs]
command = [
"env",
"RUSTDOCFLAGS=--cfg docsrs",
"cargo",
"+nightly",
"doc",
"--color", "always",
"--no-deps",
"--all-features",
]
watch = ["README.md", "src/level_1/README.md", "src/level_1/YYear.md"]