File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change 66
66
variables :
67
67
TOOLCHAIN : stable
68
68
69
+ - job : clippy
70
+ pool :
71
+ vmImage : ubuntu-16.04
72
+ steps :
73
+ - template : ci/azure-install-rust.yml
74
+ - bash : rustup component add clippy
75
+ displayName : " Install clippy"
76
+ - bash : cargo clippy --all-targets -- -D warnings
77
+ displayName : " Check clippy (cargo)"
78
+ - bash : cd crates/cargo-test-macro && cargo clippy --all-targets -- -D warnings
79
+ displayName : " Check clippy (cargo-test-macro)"
80
+ - bash : cd crates/cargo-test-support && cargo clippy --all-targets -- -D warnings
81
+ displayName : " Check clippy (cargo-test-support)"
82
+ - bash : cd crates/crates-io && cargo clippy --all-targets -- -D warnings
83
+ displayName : " Check clippy (crates-io)"
84
+ - bash : cd crates/resolver-tests && cargo clippy --all-targets -- -D warnings
85
+ displayName : " Check clippy (resolver-tests)"
86
+ - bash : cd crates/cargo-platform && cargo clippy --all-targets -- -D warnings
87
+ displayName : " Check clippy (cargo-platform)"
88
+ variables :
89
+ TOOLCHAIN : beta
90
+
69
91
- job : resolver
70
92
pool :
71
93
vmImage : ubuntu-16.04
You can’t perform that action at this time.
0 commit comments