blob: c09ae532b871efc38f6bfcd8125cd295c4c433f7 [file] [log] [blame]
Jeff Vander Stoepd036b622020-12-17 19:59:02 +01001language: rust
2sudo: false
3
4# run builds for all the trains (and more)
5rust:
6 - 1.10.0
7 - stable
8 - beta
9 - nightly
10
11# the main build
12script:
13 - |
14 cargo build &&
15 cargo test &&
16 cargo test --release &&
17 cargo doc &&
18 cargo bench
19
20branches:
21 only:
22 - master