summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: f7fee74c702c0bb97c22f3a878268cead980dcb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
language: rust

rust:
  - 1.33.0
  - 1.34.0
  - 1.35.0
  - 1.36.0
  - 1.37.0
  - stable
  - beta

addons:
  apt:
    packages:
    - pkg-config
    - cmake
    - openssl

before_script:
  - rustup component add clippy

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