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