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

cache: cargo

install:
    - rustup component add clippy rustfmt
    - cargo install cargo-udeps
    - cargo build

script:
    - cargo build
    - cargo test
    - cargo fmt -- --check
    - cargo clippy -- --deny warnings
    - cargo udeps --locked --all-targets