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 65afff4 commit a3d2bd5Copy full SHA for a3d2bd5
ci/script.sh
@@ -31,6 +31,15 @@ main() {
31
if [ $TARGET = x86_64-unknown-linux-gnu ]; then
32
./check-blobs.sh
33
fi
34
+
35
+ if [ $TRAVIS_RUST_VERSION = nightly ]; then
36
+ # Get the latest nightly with a working clippy
37
+ rustup toolchain uninstall nightly
38
+ rustup set profile default
39
+ rustup default nightly
40
+ rustup target add $TARGET
41
+ cargo clippy --target $TARGET -D warnings
42
+ fi
43
}
44
45
main
0 commit comments