ci: Update CI. #2
This run and associated checks have been archived and are scheduled for deletion.
Learn more about checks retention
Annotations
2 errors and 2 warnings
semver
Canceling since a higher priority waiting request for 'Check API-refs/pull/11/merge' exists
|
semver
The operation was canceled.
|
manual check for common ascii range:
src/parse/command.rs#L219
warning: manual check for common ascii range
--> src/parse/command.rs:219:5
|
219 | matches!(byte, b'0'..=b'9')
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `byte.is_ascii_digit()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_is_ascii_check
|
manual check for common ascii range:
src/parse/command.rs#L215
warning: manual check for common ascii range
--> src/parse/command.rs:215:5
|
215 | matches!(byte, b'a'..=b'z' | b'A'..=b'Z')
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `byte.is_ascii_alphabetic()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_is_ascii_check
= note: `#[warn(clippy::manual_is_ascii_check)]` on by default
|