Skip to content

Ci bump

Ci bump #233

Triggered via pull request September 9, 2023 15:17
Status Success
Total duration 3m 53s
Artifacts

test.yml

on: pull_request
ubuntu / stable / minimal-versions
1m 38s
ubuntu / stable / minimal-versions
ubuntu / stable / coverage
1m 36s
ubuntu / stable / coverage
Matrix: os-check
Matrix: required
Fit to window
Zoom out
Zoom in

Annotations

1 warning
redundant guard: src/flamegraph/mod.rs#L620
warning: redundant guard --> src/flamegraph/mod.rs:620:32 | 620 | Some(delta) if delta == 0 => write!( | ^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_guards = note: `#[warn(clippy::redundant_guards)]` on by default help: try | 620 - Some(delta) if delta == 0 => write!( 620 + Some(0) => write!( |