summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 798ccbd644b2d2b408dbe251fb2c826424eb6143 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
language: rust

rust:
  - 1.33.0
  - 1.34.0
  - 1.35.0
  - 1.36.0
  - 1.37.0
  - stable
  - beta

before_script:
  - rustup component add clippy
script:
  - cargo clippy --all-targets --all-features -- -D warnings
  - cargo build
  - cargo test