aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 827a4c94323aea46719b52f8ab7b828b23dc7b89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
language: rust
rust:
  - stable
  - beta
  - nightly
matrix:
  include:
    - rust: 1.29.0 # lock down for consistent rustfmt behavior
      env: RUSTFMT
      script:
        - cargo fmt -- --write-mode=diff
  allow_failures:
    - rust: nightly
script: cargo test --release --verbose --all