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

os:
- linux
- osx
- windows

rust:
  - stable

jobs:
  allow_failures:
    - os: windows

install:
  - rustup component add rustfmt
  - rustfmt -V

script:
  - cargo fmt --all -- --check
  - cargo test --manifest-path=librocksdb-sys/Cargo.toml
  - cargo test