Catch HTTP 411 link error #1081
ci.yaml
on: pull_request
Check code formatting
14s
Clippy
1m 24s
Matrix: build
Annotations
1 error and 8 warnings
Build / Rust nightly
Unable to find any coverage files, was `cargo test` executed correctly?
|
Check code formatting
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
length comparison to zero:
src/websocket/mod.rs#L204
warning: length comparison to zero
--> src/websocket/mod.rs:204:24
|
204 | if self.outgoing_keep_alive_set.len() > 0 {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: using `!is_empty` is clearer and more explicit: `!self.outgoing_keep_alive_set.is_empty()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#len_zero
= note: `#[warn(clippy::len_zero)]` on by default
|
the following explicit lifetimes could be elided: 'r:
src/digeststream.rs#L10
warning: the following explicit lifetimes could be elided: 'r
--> src/digeststream.rs:10:6
|
10 | impl<'r, R: Read + Seek> Read for DigestingReader<'r, R> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
= note: `#[warn(clippy::needless_lifetimes)]` on by default
help: elide the lifetimes
|
10 - impl<'r, R: Read + Seek> Read for DigestingReader<'r, R> {
10 + impl<R: Read + Seek> Read for DigestingReader<'_, R> {
|
|
Clippy
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Build / Rust beta
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Build / Rust 1.75
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Build / Rust stable
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Build / Rust nightly
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|