Skip to content
Open
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
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ jobs:
- name: Check Clippy
run: cargo clippy --workspace --all-targets -- -D warnings

# Building --all-targets for a no_std environment fails because the tests depend on std
- name: Try no_std build
run: |
rustup target add thumbv6m-none-eabi
cargo build --release --workspace --lib --bins --examples --target thumbv6m-none-eabi

# Please keep this in sync with `publish-docs.yml`
documentation:
name: Documentation
Expand Down
Loading