aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: e23b82ee2e1863c740c96e84cac9e933d9f5766f (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 -- --write-mode=diff
  allow_failures:
    - rust: nightly
script: cargo test --release --verbose --all