saphyr-serde/parser/.travis.yml
David Tolnay 070396018b Remove travis secure token
Since we are no longer publishing docs from Travis.
2018-09-15 09:28:07 -07:00

18 lines
330 B
YAML

language: rust
matrix:
include:
- rust: 1.22.1
- rust: beta
- rust: nightly
allow_failures:
- rust: nightly
script:
- cargo build --verbose
- |
if [ "$TRAVIS_RUST_VERSION" = nightly ]; then
cargo install clippy --debug
cargo clippy -- -Dclippy
fi
- cargo test --verbose