aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: d7a672ccf355c7747370cfe6e269c6eb1eea4bc6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
language: rust
rust:
  - stable
  - beta
script:
  - cargo test --all
cache: cargo
matrix:
  include:
    - rust: nightly-2018-06-29
      env:
        - CLIPPY_VERSION=0.0.211
      before_script:
        - rustup component add rustfmt-preview
        - cargo install clippy --version $CLIPPY_VERSION || echo "clippy already installed"
      script:
        - cargo test --all-features