15 lines
443 B
YAML
15 lines
443 B
YAML
language: rust
|
|
sudo: false
|
|
matrix:
|
|
include:
|
|
- rust: stable
|
|
- rust: nightly
|
|
script:
|
|
- |
|
|
cargo build --verbose --features "$FEATURES"
|
|
cargo test --verbose --features "$FEATURES"
|
|
cargo test --verbose --manifest-path=nodrop/Cargo.toml
|
|
cargo bench --verbose --features "$FEATURES" -- --test
|
|
cargo bench --verbose --manifest-path=nodrop/Cargo.toml -- --test
|
|
cargo doc --verbose --features "$FEATURES"
|