We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd1518d commit 9010159Copy full SHA for 9010159
.github/workflows/ci.yml
@@ -132,6 +132,19 @@ jobs:
132
- run: rustc --version
133
- run: cargo doc --no-deps --document-private-items --all-features
134
135
+ nostd:
136
+ runs-on: ubuntu-latest
137
+ steps:
138
+ - uses: actions/checkout@v2
139
+ - uses: actions-rs/toolchain@v1
140
+ with:
141
+ profile: minimal
142
+ toolchain: nightly-2021-07-01
143
+ override: true
144
+ target: thumbv7em-none-eabi
145
+ # Target thumbv7em does not have std
146
+ - run: cargo build --target thumbv7em-none-eabi --manifest-path no-std-check/Cargo.toml
147
+
148
udeps:
149
runs-on: ubuntu-latest
150
steps:
0 commit comments