Repo of no-std crates for my personal embedded projects

feat: Add CI

Adds a quick CI pipeline for format checking and unit testing

+15
+15
.tangled/workflows/test.yml
··· 1 + when: 2 + - event: ["push", "pull_request"] 3 + branch: main 4 + 5 + engine: nixery 6 + 7 + dependencies: 8 + nixpkgs: 9 + - cargo 10 + 11 + steps: 12 + - name: Format check 13 + command: cargo fmt --all --check 14 + - name: Tests 15 + command: cargo test --workspace