File tree Expand file tree Collapse file tree 3 files changed +11
-7
lines changed Expand file tree Collapse file tree 3 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 49
49
- uses : actions/checkout@v4
50
50
- name : Run Clippy
51
51
run : cargo clippy --all-targets --all-features
52
+
53
+ doc :
54
+ needs : [style]
55
+ runs-on : ubuntu-latest
56
+ steps :
57
+ - uses : actions/checkout@v4
58
+ - uses : dtolnay/rust-toolchain@stable
59
+ - run : cargo doc --no-deps
60
+ env :
61
+ RUSTDOCFLAGS : -D rustdoc::broken-intra-doc-links
Original file line number Diff line number Diff line change 1
- #![ deny(
2
- missing_debug_implementations,
3
- missing_docs,
4
- unreachable_pub,
5
- rustdoc:: broken_intra_doc_links
6
- ) ]
1
+ #![ deny( missing_debug_implementations, missing_docs, unreachable_pub) ]
7
2
#![ cfg_attr( test, deny( warnings) ) ]
8
3
9
4
//! Utilities for [`http_body::Body`].
Original file line number Diff line number Diff line change 2
2
missing_debug_implementations,
3
3
missing_docs,
4
4
unreachable_pub,
5
- rustdoc:: broken_intra_doc_links,
6
5
clippy:: missing_safety_doc,
7
6
clippy:: undocumented_unsafe_blocks
8
7
) ]
You can’t perform that action at this time.
0 commit comments