Run cargo clippy in CI on whole workspace

This commit is contained in:
Felix Ableitner 2020-12-22 13:03:50 +01:00
parent 95e30f0e08
commit 5a16d43fef
2 changed files with 4 additions and 4 deletions

View File

@ -17,7 +17,7 @@ steps:
- name: cargo clippy
image: ekidd/rust-musl-builder:1.47.0
commands:
- cargo clippy --all-targets --all-features -- -D warnings
- cargo clippy --workspace --all-targets --all-features -- -D warnings
- name: check documentation build
image: ekidd/rust-musl-builder:1.47.0

View File

@ -540,7 +540,7 @@ mod tests {
let expected_post_listing_no_user = PostView {
post: Post {
id: inserted_post.id,
name: post_name.to_owned(),
name: post_name,
creator_id: inserted_user.id,
url: None,
body: None,
@ -562,7 +562,7 @@ mod tests {
my_vote: None,
creator: UserSafe {
id: inserted_user.id,
name: user_name.to_owned(),
name: user_name,
preferred_username: None,
published: inserted_user.published,
avatar: None,
@ -579,7 +579,7 @@ mod tests {
creator_banned_from_community: false,
community: CommunitySafe {
id: inserted_community.id,
name: community_name.to_owned(),
name: community_name,
icon: None,
removed: false,
deleted: false,