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

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