Skip to content

chore(deps): bump docker/build-push-action from 5 to 6 (#73) #81

chore(deps): bump docker/build-push-action from 5 to 6 (#73)

chore(deps): bump docker/build-push-action from 5 to 6 (#73) #81

GitHub Actions / clippy succeeded Jul 12, 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