aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: e12f11185e5c3460e0a277ecaebad14d5c2343c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
language: rust
rust:
  - stable
  - beta
  - nightly
matrix:
  include:
    - rust: 1.29.0 # lock down for consistent rustfmt behavior
      env: RUSTFMT
      install:
        - rustup component add rustfmt-preview
      script:
        - cargo fmt -- --check
  allow_failures:
    - rust: nightly
script: cargo test --release --verbose --all