Skip to content

add telephone numers to text parsing #26

add telephone numers to text parsing

add telephone numers to text parsing #26

Triggered via push November 2, 2023 02:47
Status Failure
Total duration 5m 27s
Artifacts
This run and associated checks have been archived and are scheduled for deletion. Learn more about checks retention
Fit to window
Zoom out
Zoom in

Annotations

1 error and 4 warnings
test
Process completed with exit code 101.
test
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
use of `char::is_digit` with literal radix of 10: src/parser/parse_from_text/phone_numbers.rs#L23
warning: use of `char::is_digit` with literal radix of 10 --> src/parser/parse_from_text/phone_numbers.rs:23:5 | 23 | input.is_digit(10) | ^^^^^^^^^^^^^^^^^^ help: try: `input.is_ascii_digit()` | = note: `#[warn(clippy::is_digit_ascii_radix)]` on by default = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#is_digit_ascii_radix
use of `char::is_digit` with literal radix of 10: src/parser/parse_from_text/phone_numbers.rs#L23
warning: use of `char::is_digit` with literal radix of 10 --> src/parser/parse_from_text/phone_numbers.rs:23:5 | 23 | input.is_digit(10) | ^^^^^^^^^^^^^^^^^^ help: try: `input.is_ascii_digit()` | = note: `#[warn(clippy::is_digit_ascii_radix)]` on by default = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#is_digit_ascii_radix
use of `char::is_digit` with literal radix of 10: src/parser/parse_from_text/phone_numbers.rs#L23
warning: use of `char::is_digit` with literal radix of 10 --> src/parser/parse_from_text/phone_numbers.rs:23:5 | 23 | input.is_digit(10) | ^^^^^^^^^^^^^^^^^^ help: try: `input.is_ascii_digit()` | = note: `#[warn(clippy::is_digit_ascii_radix)]` on by default = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#is_digit_ascii_radix