Skip to content

Commit

Permalink
Address review suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
hcpl committed Nov 7, 2018
1 parent 6e54a7d commit 5d2434e
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .travis.yml
Expand Up @@ -8,14 +8,17 @@ rust:
before_script:
- pip install 'travis-cargo<0.2' --user && export PATH=$HOME/.local/bin:$PATH
script:
- if [ "${MINIMAL_VERSIONS}" = "y" ]; then cargo update -Z minimal-versions; fi
- cargo run -p ci
- cargo run --example default
- if [ "${TRAVIS_RUST_VERSION}" = nightly ]; then cargo update -Z minimal-versions; fi
- if [ "${TRAVIS_RUST_VERSION}" = nightly ]; then cargo run -p ci; fi
- if [ "${TRAVIS_RUST_VERSION}" = nightly ]; then cargo run --example default; fi
after_success:
- travis-cargo --only nightly doc-upload

matrix:
include:
- rust: nightly
env: MINIMAL_VERSIONS=y

notifications:
email:
on_success: never

0 comments on commit 5d2434e

Please sign in to comment.