Update flake.lock #708
check.yml
on: pull_request
fmt (stable)
26s
cargo-nix
55s
Matrix: clippy
Annotations
6 warnings
this boolean expression can be simplified:
challenges/src/endpoints/coding_challenges/submissions.rs#L600
warning: this boolean expression can be simplified
--> challenges/src/endpoints/coding_challenges/submissions.rs:600:12
|
600 | if !self
| ____________^
601 | | .ids
602 | | .get(&key)
603 | | .is_some_and(|&x| self.id_position(x) == 0)
| |_______________________________________________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonminimal_bool
= note: `#[warn(clippy::nonminimal_bool)]` on by default
help: try
|
600 ~ if self
601 + .ids
602 + .get(&key).is_none_or(|&x| self.id_position(x) != 0)
|
|
fmt (stable)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
clippy (beta)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
this boolean expression can be simplified:
challenges/src/endpoints/coding_challenges/submissions.rs#L600
warning: this boolean expression can be simplified
--> challenges/src/endpoints/coding_challenges/submissions.rs:600:12
|
600 | if !self
| ____________^
601 | | .ids
602 | | .get(&key)
603 | | .is_some_and(|&x| self.id_position(x) == 0)
| |_______________________________________________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonminimal_bool
= note: `#[warn(clippy::nonminimal_bool)]` on by default
help: try
|
600 ~ if self
601 + .ids
602 + .get(&key).is_none_or(|&x| self.id_position(x) != 0)
|
|
clippy (stable)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
cargo-nix
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|