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
9 changes: 6 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,13 @@ matrix:

- name: cargo clippy
rust: nightly
install:
- rustup component add clippy-preview
script:
- cargo clippy -- -Dwarnings
- if rustup component add clippy-preview;
then
cargo clippy -- -Dwarnings;
else
echo 'Skipping clippy';
fi

- name: cargo doc
rust: nightly
Expand Down