Skip to content

chore(deps): update codecov/codecov-action action to v4 #13

chore(deps): update codecov/codecov-action action to v4

chore(deps): update codecov/codecov-action action to v4 #13

GitHub Actions / clippy succeeded Jan 31, 2024 in 0s

reviewdog [clippy] report

reported by reviewdog 🐶

Findings (0)
Filtered Findings (1)

src/bin/main.rs|73 col 12| warning: redundant pattern matching, consider using is_some()
--> src/bin/main.rs:73:12
|
73 | if let Some(_) = &opts.background {
| -------^^^^^^^------------------- help: try: if opts.background.is_some()
|
= 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