Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ rust:
- 1.36.0

script:
- |
if [[ $TRAVIS_RUST_VERSION == "stable" ]]
then
rustup component add rustfmt
cargo fmt --all -- --check || (echo "Please reformat your code with 'cargo fmt'"; false)
fi
- cargo build --verbose
- cargo test --verbose
- cargo doc --verbose
Expand Down