summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 02c1695e3efb616d408aaaded80af3fb7fff6e06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
language: rust

rust:
  - stable

before_script:
  - rustup component add clippy
  - rustup component add rustfmt

script:
  - cargo build --release
  - cargo test
  - cargo clippy --all-targets --all-features -- -D warnings
  - cargo fmt --all -- --check