sqlite-wasm-connector/.travis.yml

24 lines
278 B
YAML
Raw Normal View History

2015-05-28 17:24:45 -04:00
language: rust
2016-02-29 08:34:22 +01:00
os:
- linux
- osx
2015-08-17 21:42:13 -04:00
rust:
- stable
- beta
- nightly
2015-05-28 17:24:45 -04:00
2015-11-21 19:04:01 +01:00
script:
- if [ "$TRAVIS_RUST_VERSION" = "nightly" ]; then
cargo bench;
cargo build;
cargo test;
else
cargo build;
cargo test;
fi
2015-05-28 17:24:45 -04:00
notifications:
email: false