2020-03-15 11:35:35 +00:00
|
|
|
language: rust
|
|
|
|
rust: stable
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
include:
|
|
|
|
- os: linux
|
|
|
|
dist: bionic
|
|
|
|
|
|
|
|
- os: osx
|
|
|
|
|
|
|
|
before_script:
|
|
|
|
- rustup component add rustfmt
|
|
|
|
|
|
|
|
script:
|
2020-03-28 10:50:59 +00:00
|
|
|
- cargo build --no-default-features --features 'encryption sqlite-cryptostore'
|
2020-03-15 11:43:11 +00:00
|
|
|
- cargo fmt --all -- --check
|
2020-03-28 10:50:59 +00:00
|
|
|
- cargo test --no-default-features --features 'encryption sqlite-cryptostore'
|