aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 22447f135678295d0a92f150f38ee2ad1878d724 (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