We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c97cd86 commit 13152f8Copy full SHA for 13152f8
.github/workflows/lint.yml
@@ -29,13 +29,15 @@ jobs:
29
- name: Run clippy on crates/
30
run: |
31
find crates/ -type f -name "Cargo.toml" \
32
- -exec sh -c 'echo "Clippy for {}" && cargo clippy --manifest-path "{}"' \;
+ -exec sh -c \
33
+ 'f="$1"; echo "Clippy for ${f}" && cargo clippy --manifest-path ${f}' shell {} \;
34
env:
35
RUSTFLAGS: -D warnings
36
- name: Run clippy on examples/
37
38
find examples/ -type f -name "Cargo.toml" \
39
40
41
42
43
0 commit comments