File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -115,6 +115,22 @@ jobs:
115
115
command : check
116
116
args : --features=ld,defmt,${{ matrix.mcu }} --test ${{ matrix.test }}
117
117
118
+ check-doc :
119
+ name : Check Documentation Build
120
+ runs-on : ubuntu-latest
121
+ steps :
122
+ - uses : actions/checkout@v2
123
+ - uses : actions-rs/toolchain@v1
124
+ with :
125
+ toolchain : nightly
126
+ target : thumbv7em-none-eabihf
127
+ override : true
128
+ profile : minimal
129
+ - uses : actions-rs/cargo@v1
130
+ with :
131
+ command : doc
132
+ args : --features=stm32f303xc,rt,stm32-usbd,can
133
+
118
134
clippy :
119
135
name : Clippy
120
136
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 90
90
#![ allow( clippy:: upper_case_acronyms) ]
91
91
#![ warn( missing_docs) ]
92
92
#![ deny( macro_use_extern_crate) ]
93
+ #![ cfg_attr( nightly, deny( rustdoc:: broken_intra_doc_links) ) ]
93
94
94
95
use cfg_if:: cfg_if;
95
96
You can’t perform that action at this time.
0 commit comments