Skip to content

Run aho corasick to also find overlapping substrings #81

Run aho corasick to also find overlapping substrings

Run aho corasick to also find overlapping substrings #81

Triggered via pull request February 24, 2024 16:29
Status Success
Total duration 4m 53s
Artifacts 1

CI.yaml

on: pull_request
Build wheels on Linux
3m 15s
Build wheels on Linux
Build wheels on Windows
3m 50s
Build wheels on Windows
Build wheels on macOS
4m 9s
Build wheels on macOS
Publish to crates.io
0s
Publish to crates.io
Release to PyPi
0s
Release to PyPi
Fit to window
Zoom out
Zoom in

Annotations

17 warnings
Clippy
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions-rs/toolchain@v1, actions-rs/clippy@master. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Clippy
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/clippy@master. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
Clippy
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Clippy
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Clippy
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Clippy
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Clippy: quickner-core/src/quickner.rs#L50
warning: associated function `find_index` is never used --> quickner-core/src/quickner.rs:68:19 | 50 | impl Quickner { | ------------- associated function in this implementation ... 68 | pub(crate) fn find_index( | ^^^^^^^^^^ | = note: `#[warn(dead_code)]` on by default
Clippy: src/pydocument.rs#L59
warning: use of `unwrap_or` to construct default value --> src/pydocument.rs:59:26 | 59 | label: label.unwrap_or(Vec::new()), | ^^^^^^^^^^^^^^^^^^^^^ help: try: `unwrap_or_default()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unwrap_or_default = note: `#[warn(clippy::unwrap_or_default)]` on by default
Clippy: src/pydocument.rs#L59
warning: use of `unwrap_or` to construct default value --> src/pydocument.rs:59:26 | 59 | label: label.unwrap_or(Vec::new()), | ^^^^^^^^^^^^^^^^^^^^^ help: try: `unwrap_or_default()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unwrap_or_default = note: `#[warn(clippy::unwrap_or_default)]` on by default
Clippy: src/pydocument.rs#L126
warning: useless use of `vec!` --> src/pydocument.rs:126:31 | 126 | let possible_colors = vec![ | _______________________________^ 127 | | TermColor::Red, 128 | | TermColor::Green, 129 | | TermColor::Yellow, ... | 132 | | TermColor::Cyan, 133 | | ]; | |_________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_vec = note: `#[warn(clippy::useless_vec)]` on by default help: you can use an array directly | 126 ~ let possible_colors = [TermColor::Red, 127 + TermColor::Green, 128 + TermColor::Yellow, 129 + TermColor::Blue, 130 + TermColor::Magenta, 131 ~ TermColor::Cyan]; |
Clippy: src/pydocument.rs#L126
warning: useless use of `vec!` --> src/pydocument.rs:126:31 | 126 | let possible_colors = vec![ | _______________________________^ 127 | | TermColor::Red, 128 | | TermColor::Green, 129 | | TermColor::Yellow, ... | 132 | | TermColor::Cyan, 133 | | ]; | |_________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_vec = note: `#[warn(clippy::useless_vec)]` on by default help: you can use an array directly | 126 ~ let possible_colors = [TermColor::Red, 127 + TermColor::Green, 128 + TermColor::Yellow, 129 + TermColor::Blue, 130 + TermColor::Magenta, 131 ~ TermColor::Cyan]; |
Build wheels on Linux
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions/upload-artifact@v2. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Build wheels on Linux
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions/upload-artifact@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
Build wheels on Windows
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions/upload-artifact@v2. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Build wheels on Windows
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions/upload-artifact@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
Build wheels on macOS
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions/upload-artifact@v2. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Build wheels on macOS
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions/upload-artifact@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/

Artifacts

Produced during runtime
Name Size
wheels Expired
71.1 MB