sqlite-wasm-connector/.travis.yml
2018-10-06 10:34:04 +02:00

24 lines
278 B
YAML

language: rust
os:
- linux
- osx
rust:
- stable
- beta
- nightly
script:
- if [ "$TRAVIS_RUST_VERSION" = "nightly" ]; then
cargo bench;
cargo build;
cargo test;
else
cargo build;
cargo test;
fi
notifications:
email: false