Skip to content

ci: Update CI.

ci: Update CI. #2

Triggered via pull request August 15, 2023 15:18
@dueseeduesee
synchronize #11
duesee_issues_7
Status Cancelled
Total duration 5m 19s
Artifacts
This run and associated checks have been archived and are scheduled for deletion. Learn more about checks retention

api.yml

on: pull_request
Fit to window
Zoom out
Zoom in

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