feat: Add CI #1

merged
opened by sachy.dev targeting main from ci

Adds a quick CI pipeline for format checking and unit testing

Changed files
+15
.tangled
workflows
+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