Skip to content

rust-clippy

rust-clippy #110

Triggered via schedule January 23, 2024 14:39
Status Success
Total duration 1m 59s
Artifacts

rust-clippy.yml

on: schedule
Run rust-clippy analysis
1m 47s
Run rust-clippy analysis
Fit to window
Zoom out
Zoom in

Annotations

8 warnings
Run rust-clippy analysis
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, 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/
Run rust-clippy analysis
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/
Run rust-clippy analysis
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/
Run rust-clippy analysis
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/
Run rust-clippy analysis
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/
Run rust-clippy analysis: ui/app/src/app/editor.rs#L14
warning: unused variable: `props` --> ui/app/src/app/editor.rs:14:22 | 14 | pub(super) fn Editor(props: &Props) -> yew::Html { | ^^^^^ help: if this is intentional, prefix it with an underscore: `_props` | = note: `#[warn(unused_variables)]` on by default
Run rust-clippy analysis: ui/app/src/app/home.rs#L21
warning: unused variable: `settings` --> ui/app/src/app/home.rs:21:24 | 21 | State::Welcome(settings) => html_welcome(), | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_settings`
Run rust-clippy analysis: ui/app/src/app/home.rs#L7
warning: variant `Welcome` is never constructed --> ui/app/src/app/home.rs:9:5 | 7 | pub(super) enum State { | ----- variant in this enum 8 | QueryingSettings, 9 | Welcome(Settings), | ^^^^^^^ | = note: `State` has a derived impl for the trait `Clone`, but this is intentionally ignored during dead code analysis = note: `#[warn(dead_code)]` on by default