Skip to content

ci: split release jobs, fixup permissions (#28) #65

ci: split release jobs, fixup permissions (#28)

ci: split release jobs, fixup permissions (#28) #65

Triggered via push July 18, 2025 20:49
Status Success
Total duration 4m 23s
Artifacts

check.yml

on: push
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}`."); |