We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 738c8f8 commit c102b6cCopy full SHA for c102b6c
.github/workflows/build.yml
@@ -241,6 +241,9 @@ jobs:
241
run: |
242
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile=minimal --default-toolchain ${{ env.TOOLCHAIN }}
243
rustup override set ${{ env.TOOLCHAIN }}
244
+ - name: Install clippy
245
+ run: |
246
+ rustup component add clippy
247
- name: Run default clippy linting
248
249
./ci/check-lint.sh
ci/check-lint.sh
@@ -1,7 +1,6 @@
1
#!/bin/sh
2
set -e
3
set -x
4
-rustup component add clippy
5
RUSTFLAGS='-D warnings' cargo clippy -- \
6
`# Errors` \
7
-A clippy::erasing_op \
0 commit comments