Skip to content

Allow Plane to delegate auth #590

Allow Plane to delegate auth

Allow Plane to delegate auth #590

Triggered via pull request August 30, 2024 01:38
Status Success
Total duration 15s
Artifacts

rustfmt.yml

on: pull_request
check-rust-format
5s
check-rust-format
Fit to window
Zoom out
Zoom in

Annotations

8 warnings
check-rust-format
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
check-rust-format
The following actions use a deprecated Node.js version and will be forced to run on node20: actions-rs/toolchain@v1. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
check-rust-format
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/
check-rust-format
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/
check-rust-format
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/
check-rust-format
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/
returning the result of a `let` binding from a block: plane/plane-tests/tests/forward_auth.rs#L42
warning: returning the result of a `let` binding from a block --> plane/plane-tests/tests/forward_auth.rs:42:9 | 41 | let a = client.status().await; | ------------------------------ unnecessary `let` binding 42 | a | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_and_return help: return the expression directly | 41 ~ 42 ~ client.status().await |
returning the result of a `let` binding from a block: plane/plane-tests/tests/forward_auth.rs#L18
warning: returning the result of a `let` binding from a block --> plane/plane-tests/tests/forward_auth.rs:18:9 | 17 | let a = client.status().await; | ------------------------------ unnecessary `let` binding 18 | a | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_and_return = note: `#[warn(clippy::let_and_return)]` on by default help: return the expression directly | 17 ~ 18 ~ client.status().await |