Skip to content

Ci bump

Ci bump #9

Triggered via pull request September 9, 2023 15:45
@jonhoojonhoo
opened #40
ci-bump
Status Success
Total duration 13m 21s
Artifacts

check.yml

on: pull_request
stable / fmt
9s
stable / fmt
nightly / doc
20s
nightly / doc
ubuntu / stable / features
14s
ubuntu / stable / features
Matrix: clippy
Matrix: msrv
Fit to window
Zoom out
Zoom in

Annotations

8 warnings
redundant pattern matching, consider using `is_err()`: src/lib.rs#L706
warning: redundant pattern matching, consider using `is_err()` --> src/lib.rs:706:24 | 706 | if let Err(..) = self.waiting.send((thread::current(), self.head)) { | -------^^^^^^^---------------------------------------------------- help: try this: `if self.waiting.send((thread::current(), self.head)).is_err()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_pattern_matching
redundant pattern matching, consider using `is_err()`: src/lib.rs#L526
warning: redundant pattern matching, consider using `is_err()` --> src/lib.rs:526:16 | 526 | if let Err(..) = self.broadcast_inner(val, true) { | -------^^^^^^^---------------------------------- help: try this: `if self.broadcast_inner(val, true).is_err()` | = note: this will change drop order of the result, as well as all temporaries = note: add `#[allow(clippy::redundant_pattern_matching)]` if this is important = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_pattern_matching = note: `#[warn(clippy::redundant_pattern_matching)]` on by default
lint `clippy::drop_ref` has been renamed to `dropping_references`: src/lib.rs#L224
warning: lint `clippy::drop_ref` has been renamed to `dropping_references` --> src/lib.rs:224:21 | 224 | #[allow(clippy::drop_ref)] | ^^^^^^^^^^^^^^^^ help: use the new name: `dropping_references` | = note: `#[warn(renamed_and_removed_lints)]` on by default
stable / clippy
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
redundant pattern matching, consider using `is_err()`: src/lib.rs#L706
warning: redundant pattern matching, consider using `is_err()` --> src/lib.rs:706:24 | 706 | if let Err(..) = self.waiting.send((thread::current(), self.head)) { | -------^^^^^^^---------------------------------------------------- help: try: `if self.waiting.send((thread::current(), self.head)).is_err()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_pattern_matching
redundant pattern matching, consider using `is_err()`: src/lib.rs#L526
warning: redundant pattern matching, consider using `is_err()` --> src/lib.rs:526:16 | 526 | if let Err(..) = self.broadcast_inner(val, true) { | -------^^^^^^^---------------------------------- help: try: `if self.broadcast_inner(val, true).is_err()` | = note: this will change drop order of the result, as well as all temporaries = note: add `#[allow(clippy::redundant_pattern_matching)]` if this is important = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_pattern_matching = note: `#[warn(clippy::redundant_pattern_matching)]` on by default
lint `clippy::drop_ref` has been renamed to `dropping_references`: src/lib.rs#L224
warning: lint `clippy::drop_ref` has been renamed to `dropping_references` --> src/lib.rs:224:21 | 224 | #[allow(clippy::drop_ref)] | ^^^^^^^^^^^^^^^^ help: use the new name: `dropping_references` | = note: `#[warn(renamed_and_removed_lints)]` on by default
beta / clippy
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/