We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 907916f commit 7872924Copy full SHA for 7872924
.github/workflows/build-ci.yml
@@ -25,7 +25,13 @@ jobs:
25
with:
26
toolchain: stable
27
components: rustfmt, clippy
28
- - run: cargo check
+ target: thumbv6m-none-eabi
29
+ - name: Cargo check
30
+ run: cargo check
31
+ - name: Install gcc-arm-none-eabi
32
+ run: sudo apt-get update && sudo apt-get install -y gcc-arm-none-eabi
33
+ - name: Cargo check no-std
34
+ run: cargo check --package libosdp --target thumbv6m-none-eabi --no-default-features
35
test:
36
runs-on: ubuntu-latest
37
steps:
0 commit comments