Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ jobs:
uses: dtolnay/rust-toolchain@e97e2d8cc328f1b50210efc529dca0028893a2d9
with:
toolchain: stable
components: clippy

- name: Setup compilation cache
uses: Swatinem/rust-cache@98c8021b550208e191a6a3145459bfc9fb29c4c0 # v2.8.0
Expand Down
9 changes: 1 addition & 8 deletions rust-tooling/ci-tests/tests/stubs_are_warning_free.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,5 @@ fn stubs_are_warning_free() {
if !log.is_empty() {
std::fs::write("clippy.log", &log).expect("should write clippy.log");
}
assert!(
log.is_empty(),
"
╔═════════════════════════════════════════╗
║ clippy found warnings, check clippy.log ║
╚═════════════════════════════════════════╝
"
);
assert!(log.is_empty(), "{log}");
}