f6cbf1bbd3
quickcheckv0.7.2 comes with lazy_static v1.2.0 which only support Rust 1.24.1. See https://github.com/rust-lang-nursery/lazy-static.rs/releases/tag/1.2.0
20 lines
356 B
YAML
20 lines
356 B
YAML
language: rust
|
|
|
|
matrix:
|
|
include:
|
|
- rust: stable
|
|
- rust: beta
|
|
- rust: nightly
|
|
- rust: 1.17.0
|
|
script: cargo build
|
|
- rust: 1.24.1
|
|
- rust: nightly
|
|
env: CLIPPY
|
|
script: |
|
|
if rustup component add clippy-preview; then
|
|
cargo clippy -- -Dclippy
|
|
fi
|
|
|
|
script:
|
|
- cargo build
|
|
- cargo test
|