manifest-schema: Apply clippy to doctest

https://github.com/taiki-e/github-actions/commit/96af4dc51482b761c058fdc8ef3a80b44a18e51f
This commit is contained in:
Taiki Endo
2026-02-09 23:32:23 +09:00
parent 783ca381c0
commit 672b40bb62
+6 -4
View File
@@ -6,10 +6,12 @@ Structured access to the install-action manifests.
#![doc(test( #![doc(test(
no_crate_inject, no_crate_inject,
attr( attr(allow(
deny(warnings, rust_2018_idioms, single_use_lifetimes), dead_code,
allow(dead_code, unused_variables) unused_variables,
) clippy::undocumented_unsafe_blocks,
clippy::unused_trait_names,
))
))] ))]
#![warn( #![warn(
// Lints that may help when writing public library. // Lints that may help when writing public library.