11 lines
363 B
YAML
11 lines
363 B
YAML
language: rust
|
|
|
|
rust:
|
|
- nightly
|
|
- beta
|
|
- stable
|
|
|
|
script:
|
|
- cargo build && cargo test && cargo test --features "eders"
|
|
- if [[ "$TRAVIS_RUST_VERSION" == "nightly" ]]; then cargo bench; fi
|
|
- if [[ "$TRAVIS_RUST_VERSION" == "nightly" ]]; then cargo build --features "use_simd" && cargo test --features "use_simd" && cargo bench --features "use_simd"; fi
|