File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -234,13 +234,16 @@ jobs:
234
234
command : rustup component add clippy
235
235
- run :
236
236
name : Clippy linting on std
237
- command : cd lib/std && cargo clippy -- -D warnings
237
+ working_directory : ~/project/lib/std
238
+ command : cargo clippy -- -D warnings
238
239
- run :
239
240
name : Clippy linting on vm (use flags for Rust stable support)
240
- command : cd lib/vm && cargo clippy --no-default-features --features default-cranelift
241
+ working_directory : ~/project/lib/vm
242
+ command : cargo clippy --no-default-features --features default-cranelift
241
243
- run :
242
244
name : Clippy linting on hackatom
243
- command : cd contracts/hackatom && cargo clippy -- -D warnings
245
+ working_directory : ~/project/contracts/hackatom
246
+ command : cargo clippy -- -D warnings
244
247
- save_cache :
245
248
paths :
246
249
- /usr/local/cargo/registry
You can’t perform that action at this time.
0 commit comments