Skip to content

Commit dc2038f

Browse files
committed
fix travis
Signed-off-by: Yoshua Wuyts <[email protected]>
1 parent 39ab522 commit dc2038f

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed

.travis.yml

+13-11
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
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
132
cache: cargo
3+
rust: stable
4+
5+
before_script:
6+
- rustup component add rustfmt-preview
7+
- rustup component add clippy-preview
8+
- cargo fmt --version
9+
- cargo clippy --version
10+
11+
script:
12+
- cargo fmt -- --check
13+
- cargo build --verbose
14+
- cargo test --verbose
15+
- cargo clippy

0 commit comments

Comments
 (0)