Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/build-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,13 @@ jobs:
with:
toolchain: stable
components: rustfmt, clippy
- run: cargo check
target: thumbv6m-none-eabi
- name: Cargo check
run: cargo check
- name: Install gcc-arm-none-eabi
run: sudo apt-get update && sudo apt-get install -y gcc-arm-none-eabi
- name: Cargo check no-std
run: cargo check --package libosdp --target thumbv6m-none-eabi --no-default-features
test:
runs-on: ubuntu-latest
steps:
Expand Down