25 lines
587 B
YAML
25 lines
587 B
YAML
language: rust
|
|
|
|
rust:
|
|
- stable
|
|
- 1.20.0
|
|
|
|
sudo: false
|
|
|
|
notifications:
|
|
email:
|
|
on_success: never
|
|
on_failure: always
|
|
|
|
script:
|
|
- |
|
|
[ "$TRAVIS_RUST_VERSION" = "1.20.0" ] || cargo test
|
|
- cargo test --no-default-features
|
|
- |
|
|
[ "$TRAVIS_RUST_VERSION" = "1.20.0" ] || cargo test --no-default-features --features "deflate"
|
|
- cargo test --no-default-features --features "deflate"
|
|
- cargo doc --no-deps
|
|
- rustdoc --test README.md -L target/debug
|
|
|
|
after_success:
|
|
- curl https://mvdnes.github.io/rust-docs/travis-doc-upload.sh | bash
|