Skip to content

ci: configure trusted publishing #62

ci: configure trusted publishing

ci: configure trusted publishing #62

Triggered via pull request July 18, 2025 20:22
Status Success
Total duration 4m 27s
Artifacts

check.yml

on: pull_request
Matrix: clippy
Fit to window
Zoom out
Zoom in

Annotations

4 warnings
variables can be used directly in the `format!` string: src/unstable.rs#L118
warning: variables can be used directly in the `format!` string --> src/unstable.rs:118:23 | 118 | let doc = format!("The tracking issue is: `{}`.", issue); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args help: change this to | 118 - let doc = format!("The tracking issue is: `{}`.", issue); 118 + let doc = format!("The tracking issue is: `{issue}`."); |
variables can be used directly in the `format!` string: src/stable.rs#L71
warning: variables can be used directly in the `format!` string --> src/stable.rs:71:23 | 71 | let doc = format!("The tracking issue is: `{}`.", issue); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args = note: `#[warn(clippy::uninlined_format_args)]` on by default help: change this to | 71 - let doc = format!("The tracking issue is: `{}`.", issue); 71 + let doc = format!("The tracking issue is: `{issue}`."); |
variables can be used directly in the `format!` string: src/unstable.rs#L118
warning: variables can be used directly in the `format!` string --> src/unstable.rs:118:23 | 118 | let doc = format!("The tracking issue is: `{}`.", issue); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args help: change this to | 118 - let doc = format!("The tracking issue is: `{}`.", issue); 118 + let doc = format!("The tracking issue is: `{issue}`."); |
variables can be used directly in the `format!` string: src/stable.rs#L71
warning: variables can be used directly in the `format!` string --> src/stable.rs:71:23 | 71 | let doc = format!("The tracking issue is: `{}`.", issue); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args = note: `#[warn(clippy::uninlined_format_args)]` on by default help: change this to | 71 - let doc = format!("The tracking issue is: `{}`.", issue); 71 + let doc = format!("The tracking issue is: `{issue}`."); |