Skip to content

Add CreateFolder operation (#26) #360

Add CreateFolder operation (#26)

Add CreateFolder operation (#26) #360

Triggered via push December 2, 2024 17:24
Status Success
Total duration 54s
Artifacts

ci.yaml

on: push
Build & Test Project
41s
Build & Test Project
Fit to window
Zoom out
Zoom in

Annotations

3 warnings
[clippy] src/types/soap.rs#L348: src/types/soap.rs#L348
warning: unneeded `return` statement --> src/types/soap.rs:348:9 | 348 | return Ok(Self::from_bytes(content)); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return = note: `#[warn(clippy::needless_return)]` on by default help: remove `return` | 348 - return Ok(Self::from_bytes(content)); 348 + Ok(Self::from_bytes(content)) |
Build & Test Project
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
[clippy] src/types/soap.rs#L348: src/types/soap.rs#L348
warning: unneeded `return` statement --> src/types/soap.rs:348:9 | 348 | return Ok(Self::from_bytes(content)); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return = note: `#[warn(clippy::needless_return)]` on by default help: remove `return` | 348 - return Ok(Self::from_bytes(content)); 348 + Ok(Self::from_bytes(content)) |