We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6b4406 commit e199fd2Copy full SHA for e199fd2
.github/workflows/ci.yml
@@ -103,6 +103,23 @@ jobs:
103
command: fmt
104
args: --all -- --check
105
106
+ rustdoc:
107
+ name: Rust Doc
108
+ runs-on: ubuntu-latest
109
+ steps:
110
+ - uses: actions/checkout@v2
111
+ - uses: actions-rs/toolchain@v1
112
+ with:
113
+ toolchain: stable
114
+ target: thumbv7em-none-eabihf
115
+ override: true
116
+ profile: minimal
117
+ components: rustfmt
118
+ - uses: actions-rs/cargo@v1
119
120
+ command: doc
121
+ args: --features=stm32f303xc,rt,stm32-usbd,can
122
+
123
codegen:
124
name: Check Codegen
125
runs-on: ubuntu-latest
0 commit comments