-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathMakefile.toml
More file actions
48 lines (37 loc) · 871 Bytes
/
Copy pathMakefile.toml
File metadata and controls
48 lines (37 loc) · 871 Bytes
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
47
48
[tasks.format]
command = "cargo"
args = ["fmt", "--all", "--check"]
[tasks.clippy]
command = "cargo"
args = ["clippy", "--", "-D", "warnings"]
[tasks.build]
command = "cargo"
args = ["build"]
[tasks.test]
command = "cargo"
args = ["test"]
[tasks.check]
command = "cargo"
args = ["check"]
[tasks.ignored-test]
command = "cargo"
args = ["test", "--", "--ignored"]
[tasks.download-all]
description = "Test all download formats"
command = "cargo"
args = ["test" , "backend::manga_downloader", "--", "--ignored"]
[tasks.download]
description = "Test only the specified download format, Example: cargo make download epub"
command = "cargo"
args = ["test" , "backend::manga_downloader::${@}", "--", "--ignored"]
[tasks.full-ci]
dependencies = [
"check",
"clippy",
"format",
"build",
"test",
"ignored-test"
]
[tasks.default]
alias = "full-ci"