Run clippy on all targets and all features and fix clippy warning.

This commit is contained in:
Jimmy Cuadra 2019-06-02 17:37:46 -07:00
parent 8e38761ad5
commit 585d22a612
2 changed files with 1 additions and 2 deletions

View File

@ -4,7 +4,7 @@ before_script:
- "rustup component add clippy"
script:
- "cargo fmt --all -- --check"
- "cargo clippy -- -D warnings"
- "cargo clippy --all-targets --all-features -- -D warnings"
- "cargo build --verbose"
- "cargo test --verbose"
notifications:

View File

@ -66,7 +66,6 @@ fn main() {
tokio::run(
hello_world(homeserver_url.parse().unwrap(), room).map_err(|e| {
dbg!(e);
()
}),
);
}