Add new manually-triggerable workflows #46
Annotations
2 errors
tests/lint-failure/src/main.rs#L3
[clippy] reported by reviewdog 🐶
error: redundant pattern matching, consider using `is_some()`
--> src/main.rs:3:12
|
3 | if let Some(_) = Some(1) {
| -------^^^^^^^---------- help: try this: `if Some(1).is_some()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_pattern_matching
= note: `-D clippy::redundant-pattern-matching` implied by `-D warnings`
Raw Output:
src/main.rs:3:12:e:error: redundant pattern matching, consider using `is_some()`
--> src/main.rs:3:12
|
3 | if let Some(_) = Some(1) {
| -------^^^^^^^---------- help: try this: `if Some(1).is_some()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_pattern_matching
= note: `-D clippy::redundant-pattern-matching` implied by `-D warnings`
__END__
|
|
The logs for this run have expired and are no longer available.
Loading