aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 09689fc3c96b04811dd7aebba95f934698c14fa9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
language: rust
rust:
  - stable
  - beta
cache: cargo
matrix:
  include:
    - rust: nightly-2018-08-24
      script:
        - cd testing && cargo test --no-default-features --features with-rocket

before_script:
- rustup component add rustfmt-preview

script:
- cargo test --all
- if [[ "${TRAVIS_RUST_VERSION}" == stable ]]; then
    cargo fmt -- --check;
  fi