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