You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
292 B
23 lines
292 B
4 months ago
|
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
|