aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 2894055d0b83dfa3c4253511dc1df10746e0b66c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
language: rust
rust:
  - stable
  - beta
  - nightly
cache: cargo

matrix:
  allow_failures:
    - rust: nightly
  fast_finish: true

script:
  - cargo build --verbose --all
  - cargo test --verbose --all