rust-postgres/.travis.yml
2016-11-26 22:48:29 -08:00

14 lines
306 B
YAML

language: rust
cache: cargo
sudo: required
rust:
- nightly
- 1.10.0
addons:
postgresql: 9.4
before_script:
- "./.travis/setup.sh"
script:
- cargo test
- cargo test --features "$(cargo read-manifest | jq -r '.features|keys|map(select(. != "with-security-framework" and . != "with-schannel"))|join(" ")')"