Skip to content

Test linting works #106

Test linting works

Test linting works #106

Triggered via push July 2, 2024 10:42
Status Failure
Total duration 29s
Artifacts

main.yml

on: push
Check Rust
21s
Check Rust
Fit to window
Zoom out
Zoom in

Annotations

2 errors
writing `&Vec` instead of `&[_]` involves a new object where a slice will do: src/main.rs#L17
error: writing `&Vec` instead of `&[_]` involves a new object where a slice will do --> src/main.rs:17:20 | 17 | ignored_users: &Vec<&str>, | ^^^^^^^^^^ help: change this to: `&[&str]` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#ptr_arg = note: `-D clippy::ptr-arg` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::ptr_arg)]`
Check Rust
Clippy has exited with exit code 101