summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 8f59ccd283522ff997f67c1516373de0ab6a859b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
language: rust
rust:
  - stable
  - beta
  - nightly
matrix:
  allow_failures:
    - rust: nightly
  fast_finish: true
cache: cargo
script:
  - cd server
  - cargo build --verbose --all
  - cargo test --verbose --all