@@ -16,40 +16,19 @@ command = ["cargo", "check", "--all-targets", "--all-features"]
16
16
need_stdout = false
17
17
18
18
[jobs .check-crossterm ]
19
- command = [
20
- " cargo" ,
21
- " check" ,
22
- " --all-targets" ,
23
- " --no-default-features" ,
24
- " --features" ,
25
- " crossterm" ,
26
- ]
19
+ command = [" cargo" , " check" , " --all-targets" , " --no-default-features" , " --features" , " crossterm" ]
27
20
need_stdout = false
28
21
29
22
[jobs .check-termion ]
30
- command = [
31
- " cargo" ,
32
- " check" ,
33
- " --all-targets" ,
34
- " --no-default-features" ,
35
- " --features" ,
36
- " termion" ,
37
- ]
23
+ command = [" cargo" , " check" , " --all-targets" , " --no-default-features" , " --features" , " termion" ]
38
24
need_stdout = false
39
25
40
26
[jobs .check-termwiz ]
41
- command = [
42
- " cargo" ,
43
- " check" ,
44
- " --all-targets" ,
45
- " --no-default-features" ,
46
- " --features" ,
47
- " termwiz" ,
48
- ]
27
+ command = [" cargo" , " check" , " --all-targets" , " --no-default-features" , " --features" , " termwiz" ]
49
28
need_stdout = false
50
29
51
- [jobs .clippy ]
52
- command = [" cargo" , " clippy " , " --all-targets " ]
30
+ [jobs .clippy-all ]
31
+ command = [" cargo" , " xtask " , " lint-clippy " ]
53
32
need_stdout = false
54
33
55
34
[jobs .test ]
@@ -91,14 +70,7 @@ need_stdout = false
91
70
on_success = " job:doc" # so that we don't open the browser at each change
92
71
93
72
[jobs .coverage ]
94
- command = [
95
- " cargo" ,
96
- " llvm-cov" ,
97
- " --lcov" ,
98
- " --output-path" ,
99
- " target/lcov.info" ,
100
- " --all-features" ,
101
- ]
73
+ command = [" cargo" , " llvm-cov" , " --lcov" , " --output-path" , " target/lcov.info" , " --all-features" ]
102
74
103
75
[jobs .coverage-unit-tests-only ]
104
76
command = [
0 commit comments