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:
115115 command : check
116116 args : --features=ld,defmt,${{ matrix.mcu }} --test ${{ matrix.test }}
117117
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+
118134 clippy :
119135 name : Clippy
120136 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 9090#![ allow( clippy:: upper_case_acronyms) ]
9191#![ warn( missing_docs) ]
9292#![ deny( macro_use_extern_crate) ]
93+ #![ cfg_attr( nightly, deny( rustdoc:: broken_intra_doc_links) ) ]
9394
9495use cfg_if:: cfg_if;
9596
You can’t perform that action at this time.
0 commit comments