rust-postgres/.travis.yml
2016-07-07 21:06:27 -07:00

15 lines
326 B
YAML

language: rust
sudo: required
rust:
- nightly
- beta
- 1.9.0
addons:
postgresql: 9.4
before_script:
- "./.travis/setup.sh"
script:
- cargo test
- cargo test --features "uuid rustc-serialize time unix_socket serde_json chrono openssl bit-vec eui48"
- (test $TRAVIS_RUST_VERSION != "nightly" || cargo test --features nightly)