• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1language: 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
23