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 0fb6147 commit cb17821Copy full SHA for cb17821
.travis.yml
@@ -17,10 +17,14 @@ matrix:
17
script:
18
- cargo check --manifest-path tests/crate/Cargo.toml --no-default-features --features alloc
19
20
- - rust: nightly
21
- name: Clippy
+ - name: Clippy
+ install:
22
+ - CLIPPY_NIGHTLY=nightly-$(curl -s https://rust-lang.github.io/rustup-components-history/x86_64-unknown-linux-gnu/clippy)
23
+ - echo "Latest nightly with Clippy is $CLIPPY_NIGHTLY"
24
+ - rustup set profile minimal
25
+ - rustup default "$CLIPPY_NIGHTLY"
26
+ - rustup component add clippy
27
- - rustup component add clippy || travis_terminate 0
28
- cargo clippy
29
30
0 commit comments