New recording flow #2937
ci.yml
on: pull_request
Detect Changes
9s
Typecheck
1m 14s
Format (Biome)
6s
Format (Cargo)
23s
Lint (Biome)
14s
Matrix: Build Desktop
Annotations
10 warnings and 3 notices
|
using `clone` on type `LayoutMode` which implements the `Copy` trait:
crates/rendering/src/layout.rs#L101
warning: using `clone` on type `LayoutMode` which implements the `Copy` trait
--> crates/rendering/src/layout.rs:101:40
|
101 | (segment.mode.clone(), segment.mode.clone(), 1.0)
| ^^^^^^^^^^^^^^^^^^^^ help: try removing the `clone` call: `segment.mode`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#clone_on_copy
|
|
using `clone` on type `LayoutMode` which implements the `Copy` trait:
crates/rendering/src/layout.rs#L101
warning: using `clone` on type `LayoutMode` which implements the `Copy` trait
--> crates/rendering/src/layout.rs:101:18
|
101 | (segment.mode.clone(), segment.mode.clone(), 1.0)
| ^^^^^^^^^^^^^^^^^^^^ help: try removing the `clone` call: `segment.mode`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#clone_on_copy
|
|
using `clone` on type `LayoutMode` which implements the `Copy` trait:
crates/rendering/src/layout.rs#L95
warning: using `clone` on type `LayoutMode` which implements the `Copy` trait
--> crates/rendering/src/layout.rs:95:25
|
95 | segment.mode.clone(),
| ^^^^^^^^^^^^^^^^^^^^ help: try removing the `clone` call: `segment.mode`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#clone_on_copy
|
|
using `clone` on type `LayoutMode` which implements the `Copy` trait:
crates/rendering/src/layout.rs#L89
warning: using `clone` on type `LayoutMode` which implements the `Copy` trait
--> crates/rendering/src/layout.rs:89:25
|
89 | next_seg.mode.clone(),
| ^^^^^^^^^^^^^^^^^^^^^ help: try removing the `clone` call: `next_seg.mode`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#clone_on_copy
|
|
using `clone` on type `LayoutMode` which implements the `Copy` trait:
crates/rendering/src/layout.rs#L88
warning: using `clone` on type `LayoutMode` which implements the `Copy` trait
--> crates/rendering/src/layout.rs:88:25
|
88 | segment.mode.clone(),
| ^^^^^^^^^^^^^^^^^^^^ help: try removing the `clone` call: `segment.mode`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#clone_on_copy
|
|
using `clone` on type `LayoutMode` which implements the `Copy` trait:
crates/rendering/src/layout.rs#L81
warning: using `clone` on type `LayoutMode` which implements the `Copy` trait
--> crates/rendering/src/layout.rs:81:21
|
81 | segment.mode.clone(),
| ^^^^^^^^^^^^^^^^^^^^ help: try removing the `clone` call: `segment.mode`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#clone_on_copy
|
|
using `clone` on type `LayoutMode` which implements the `Copy` trait:
crates/rendering/src/layout.rs#L76
warning: using `clone` on type `LayoutMode` which implements the `Copy` trait
--> crates/rendering/src/layout.rs:76:30
|
76 | .map(|s| s.mode.clone())
| ^^^^^^^^^^^^^^ help: try removing the `clone` call: `s.mode`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#clone_on_copy
= note: `#[warn(clippy::clone_on_copy)]` on by default
|
|
unneeded `return` statement:
crates/cursor-capture/src/position.rs#L52
warning: unneeded `return` statement
--> crates/cursor-capture/src/position.rs:52:13
|
52 | / return Some(Self {
53 | | x: raw.x - logical_bounds.position().x() as i32,
54 | | y: raw.y - logical_bounds.position().y() as i32,
55 | | display,
56 | | });
| |______________^
|
= 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`
|
52 ~ Some(Self {
53 + x: raw.x - logical_bounds.position().x() as i32,
54 + y: raw.y - logical_bounds.position().y() as i32,
55 + display,
56 ~ })
|
|
|
casting to the same type is unnecessary (`usize` -> `usize`):
crates/cpal-ffmpeg/src/lib.rs#L30
warning: casting to the same type is unnecessary (`usize` -> `usize`)
--> crates/cpal-ffmpeg/src/lib.rs:30:49
|
30 | let plane_size = sample_count * sample_size as usize;
| ^^^^^^^^^^^^^^^^^^^^ help: try: `sample_size`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
= note: `#[warn(clippy::unnecessary_cast)]` on by default
|
|
casting to the same type is unnecessary (`usize` -> `usize`):
crates/scap-ffmpeg/src/cpal.rs#L30
warning: casting to the same type is unnecessary (`usize` -> `usize`)
--> crates/scap-ffmpeg/src/cpal.rs:30:49
|
30 | let plane_size = sample_count * sample_size as usize;
| ^^^^^^^^^^^^^^^^^^^^ help: try: `sample_size`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
= note: `#[warn(clippy::unnecessary_cast)]` on by default
|
|
Clippy
The macos-latest label will migrate to macOS 15 beginning August 4, 2025. For more information see https://github.com/actions/runner-images/issues/12520
|
|
Build Desktop (aarch64-apple-darwin, macos-latest)
The macos-latest label will migrate to macOS 15 beginning August 4, 2025. For more information see https://github.com/actions/runner-images/issues/12520
|
|
Build Desktop (x86_64-pc-windows-msvc, windows-latest)
The windows-latest label will migrate from Windows Server 2022 to Windows Server 2025 beginning September 2, 2025. For more information see https://github.com/actions/runner-images/issues/12677
|