Skip to content

Commit

Permalink
Use full Rust version to please Travis + add semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
torkleyy committed Jan 5, 2019
1 parent 788f679 commit 22619b6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ language: rust

rust:
- nightly
- 1.28
- 1.28.0
- stable

cache:
Expand All @@ -23,9 +23,9 @@ script:
cargo test --all-features --verbose --no-run;
cargo bench --verbose --no-run --all-features;
else
cargo build --verbose --no-default-features
cargo test --verbose --no-default-features
cargo test --verbose --all-features
cargo build --verbose --no-default-features;
cargo test --verbose --no-default-features;
cargo test --verbose --all-features;
fi
- cargo build --manifest-path ./specs-derive/Cargo.toml --verbose
- cargo test --manifest-path ./specs-derive/Cargo.toml --verbose
Expand Down

0 comments on commit 22619b6

Please sign in to comment.