aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: f52c7fef9c291831fcce9a7bed0a40c24a258a90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
language: rust
rust:
  - stable
  - beta
  - nightly
  - 1.31.1
  - 1.32.0
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
    - rust: 1.31.1
script: cargo test --release --verbose --all