We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 791b0b5 commit cd7f809Copy full SHA for cd7f809
.github/workflows/ci.yml
@@ -113,6 +113,19 @@ jobs:
113
- run: rustc --version
114
- run: cargo doc --no-deps --document-private-items
115
116
+ nostd:
117
+ runs-on: ubuntu-latest
118
+ steps:
119
+ - uses: actions/checkout@v2
120
+ - uses: actions-rs/toolchain@v1
121
+ with:
122
+ profile: minimal
123
+ toolchain: nightly-2021-07-01
124
+ override: true
125
+ target: thumbv7em-none-eabi
126
+ # Target thumbv7em does not have std
127
+ - run: cargo build --target thumbv7em-none-eabi --manifest-path no-std-check/Cargo.toml
128
+
129
udeps:
130
runs-on: ubuntu-latest
131
steps:
0 commit comments