blob: 9582b4491773bed7d3405cca81fd9f9769fe3703 [file] [log] [blame]
language: rust
sudo: false
matrix:
include:
- rust: 1.6.0
- rust: stable
- rust: stable
env:
- FEATURES='unstable quickcheck'
- rust: beta
- rust: nightly
- rust: nightly
env:
- FEATURES='test unstable quickcheck'
- BENCH=1
branches:
only:
- master
script:
- |
cargo build --verbose --features "$FEATURES" &&
cargo test --verbose --features "$FEATURES" &&
([ "$BENCH" != 1 ] || cargo bench --verbose --features "$FEATURES") &&
cargo doc --verbose --features "$FEATURES"