23 lines
292 B
YAML
23 lines
292 B
YAML
language: rust
|
|
sudo: false
|
|
|
|
# run builds for all the trains (and more)
|
|
rust:
|
|
- 1.10.0
|
|
- stable
|
|
- beta
|
|
- nightly
|
|
|
|
# the main build
|
|
script:
|
|
- |
|
|
cargo build &&
|
|
cargo test &&
|
|
cargo test --release &&
|
|
cargo doc &&
|
|
cargo bench
|
|
|
|
branches:
|
|
only:
|
|
- master
|