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 8de1d3b commit 93f9909Copy full SHA for 93f9909
.travis.yml
@@ -1,14 +1,11 @@
1
language: rust
2
rust:
3
- - 1.20.0
+ #- 1.36.0
4
- nightly
5
- beta
6
- - stable
7
-script: |
8
- cargo build --verbose &&
9
- cargo test --verbose &&
10
- cargo test --verbose --features serde &&
11
- ([ $TRAVIS_RUST_VERSION != nightly ] || cargo check --verbose --no-default-features) &&
12
- ([ $TRAVIS_RUST_VERSION != nightly ] || cargo test --verbose --features union) &&
13
- ([ $TRAVIS_RUST_VERSION != nightly ] || cargo test --verbose --all-features) &&
14
- ([ $TRAVIS_RUST_VERSION != nightly ] || cargo bench --verbose bench)
+ #- stable
+script:
+ - pushd ./scripts
+ - ./test-stable.sh
+ - ([ $TRAVIS_RUST_VERSION != nightly ] || ./test-nightly.sh)
+ - popd
0 commit comments