Skip to content

Update GitHub actions #75

Update GitHub actions

Update GitHub actions #75

GitHub Actions / clippy succeeded Aug 13, 2023 in 0s

clippy

1 warning

Details

Results

Message level Amount
Internal compiler error 0
Error 0
Warning 1
Note 0
Help 0

Versions

  • rustc 1.73.0-nightly (28eb857b9 2023-08-12)
  • cargo 1.73.0-nightly (d78bbf4bd 2023-08-03)
  • clippy 0.1.73 (28eb857 2023-08-12)

Annotations

Check warning on line 93 in num_enum_derive/src/parsing.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

this loop could be written as a `for` loop

warning: this loop could be written as a `for` loop
  --> num_enum_derive/src/parsing.rs:93:9
   |
93 |         while let Some(attr) = attrs.next() {
   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for attr in attrs`
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#while_let_on_iterator
   = note: `#[warn(clippy::while_let_on_iterator)]` on by default