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 39ab522 commit dc2038fCopy full SHA for dc2038f
.travis.yml
@@ -1,13 +1,15 @@
1
language: rust
2
-rust:
3
- - nightly
4
-
5
-before_script: |
6
- rustup component add rustfmt-preview &&
7
- rustup component add clippy-preview
8
-script: |
9
- cargo fmt -- --check || true &&
10
- cargo clippy -- -D clippy::all &&
11
- cargo build --verbose &&
12
- cargo test --verbose
13
cache: cargo
+rust: stable
+
+before_script:
+ - rustup component add rustfmt-preview
+ - rustup component add clippy-preview
+ - cargo fmt --version
+ - cargo clippy --version
+script:
+ - cargo fmt -- --check
+ - cargo build --verbose
14
+ - cargo test --verbose
15
+ - cargo clippy
0 commit comments