Skip to content

Commit 5d2434e

Browse files
committed
Address review suggestions
1 parent 6e54a7d commit 5d2434e

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.travis.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,17 @@ rust:
88
before_script:
99
- pip install 'travis-cargo<0.2' --user && export PATH=$HOME/.local/bin:$PATH
1010
script:
11+
- if [ "${MINIMAL_VERSIONS}" = "y" ]; then cargo update -Z minimal-versions; fi
1112
- cargo run -p ci
1213
- cargo run --example default
13-
- if [ "${TRAVIS_RUST_VERSION}" = nightly ]; then cargo update -Z minimal-versions; fi
14-
- if [ "${TRAVIS_RUST_VERSION}" = nightly ]; then cargo run -p ci; fi
15-
- if [ "${TRAVIS_RUST_VERSION}" = nightly ]; then cargo run --example default; fi
1614
after_success:
1715
- travis-cargo --only nightly doc-upload
1816

17+
matrix:
18+
include:
19+
- rust: nightly
20+
env: MINIMAL_VERSIONS=y
21+
1922
notifications:
2023
email:
2124
on_success: never

0 commit comments

Comments
 (0)