blob: d7a672ccf355c7747370cfe6e269c6eb1eea4bc6 (
plain) (
tree)
|
|
language: rust
rust:
- stable
- beta
script:
- cargo test --all
cache: cargo
matrix:
include:
- rust: nightly-2018-06-29
env:
- CLIPPY_VERSION=0.0.211
before_script:
- rustup component add rustfmt-preview
- cargo install clippy --version $CLIPPY_VERSION || echo "clippy already installed"
script:
- cargo test --all-features
|