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 022f700 commit 150abf1Copy full SHA for 150abf1
.travis.yml
@@ -15,8 +15,12 @@ matrix:
15
script: cargo check
16
- rust: 1.36.0
17
script: cargo check --no-default-features
18
- - rust: nightly
19
- name: Clippy
+ - name: Clippy
+ install:
20
+ - CLIPPY_NIGHTLY=nightly-$(curl -s https://rust-lang.github.io/rustup-components-history/x86_64-unknown-linux-gnu/clippy)
21
+ - echo "Latest nightly with Clippy is $CLIPPY_NIGHTLY"
22
+ - rustup set profile minimal
23
+ - rustup default "$CLIPPY_NIGHTLY"
24
+ - rustup component add clippy
25
script:
- - rustup component add clippy || travis_terminate 0
26
- cargo clippy -- -Dclippy::all
0 commit comments