saphyr-serde/saphyr/.travis.yml
Hendrik Sollich 32214e92bf Raise minimum rustc version to 1.28 (Fixes CI)
Known minimum version to build [regex](https://crates.io/crates/regex).
Old enough as it is, we're not c++ here!
2019-07-24 18:37:03 +02:00

18 lines
311 B
YAML

language: rust
matrix:
include:
- rust: stable
- rust: beta
- rust: nightly
- rust: 1.28.0
- rust: nightly
env: CLIPPY
script: |
if rustup component add clippy-preview; then
cargo clippy -- -Dclippy
fi
script:
- cargo build
- cargo test