summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: b7bd102b42eb887b0e5dac7434701974efbfaa0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
sudo: true
language: rust
cache: cargo
rust:
  - nightly
  - beta
  - stable

matrix:
    allow_failures:
        - rust: nightly

before_script:
  - rustup component add rustfmt

script:
  - cargo test
  - cargo fmt -- --check