mirror of
https://github.com/roytam1/basilisk55.git
synced 2026-05-29 16:10:41 +00:00
16 lines
329 B
YAML
16 lines
329 B
YAML
language: rust
|
|
rust:
|
|
- 1.12.0
|
|
- stable
|
|
- beta
|
|
- nightly
|
|
script:
|
|
- cargo build --verbose
|
|
- cargo doc
|
|
- cargo test --verbose
|
|
- cargo test --verbose --no-default-features --lib
|
|
- if [ "$TRAVIS_RUST_VERSION" = "nightly" ]; then
|
|
cargo bench --verbose;
|
|
cargo bench --verbose --no-default-features;
|
|
fi
|