Skip to content

build(deps): bump DeterminateSystems/nix-installer-action from 14 to 16 in the actions group across 1 directory #300

build(deps): bump DeterminateSystems/nix-installer-action from 14 to 16 in the actions group across 1 directory

build(deps): bump DeterminateSystems/nix-installer-action from 14 to 16 in the actions group across 1 directory #300

Triggered via pull request November 15, 2024 06:54
Status Success
Total duration 31s
Artifacts

build.yml

on: pull_request
Matrix: build
Fit to window
Zoom out
Zoom in

Annotations

1 warning
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) |