Firmware for the b-parasite board, but in Rust.

Fix CI

authored by sachy.dev and committed by Tangled 7b421471 48a5c78f

Changed files
-10
.tangled
workflows
-10
.tangled/workflows/test.yml
··· 7 7 dependencies: 8 8 nixpkgs: 9 9 - rustup 10 - - clang 11 - - rust-bindgen-unwrapped 12 10 13 11 steps: 14 12 - name: Install Nightly 15 13 command: rustup toolchain install nightly 16 14 - name: Install toolchain 17 15 command: rustup +nightly target install thumbv7em-none-eabihf 18 - - name: LLVM tools 19 - command: rustup component add llvm-tools 20 - - name: Install flip-link 21 - command: cargo install --locked flip-link 22 16 - name: Format Check 23 17 command: cargo fmt --check 24 - - name: Check Defmt Build 25 - command: cargo build --release 26 - - name: Check Plain Build 27 - command: cargo build --release --no-default-features