From 672b40bb62b60077928da748150fadc988cfb587 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Mon, 9 Feb 2026 23:32:23 +0900 Subject: [PATCH] manifest-schema: Apply clippy to doctest https://github.com/taiki-e/github-actions/commit/96af4dc51482b761c058fdc8ef3a80b44a18e51f --- tools/manifest-schema/src/lib.rs | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/tools/manifest-schema/src/lib.rs b/tools/manifest-schema/src/lib.rs index 126f3ac7..a78bafb9 100644 --- a/tools/manifest-schema/src/lib.rs +++ b/tools/manifest-schema/src/lib.rs @@ -6,10 +6,12 @@ Structured access to the install-action manifests. #![doc(test( no_crate_inject, - attr( - deny(warnings, rust_2018_idioms, single_use_lifetimes), - allow(dead_code, unused_variables) - ) + attr(allow( + dead_code, + unused_variables, + clippy::undocumented_unsafe_blocks, + clippy::unused_trait_names, + )) ))] #![warn( // Lints that may help when writing public library.