README: add crates/docs badges #18
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
ci: | |
name: CI | |
runs-on: ubuntu-24.04 | |
env: {"RUSTFLAGS": "-Dwarnings"} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
target: thumbv7em-none-eabihf | |
- name: Install dependencies | |
run: cargo install svdtools form | |
- name: Generate | |
run: make | |
- name: Check | |
run: cargo check --features=rt |