chore: Create CI pipeline #1

merged
opened by sachy.dev targeting main from ci
Changed files
+17
.tangled
workflows
+17
.tangled/workflows/test.yml
···
··· 1 + when: 2 + - event: ["push", "pull_request"] 3 + branch: main 4 + 5 + engine: nixery 6 + 7 + dependencies: 8 + nixpkgs: 9 + - clang 10 + - cargo 11 + - rustfmt 12 + 13 + steps: 14 + - name: Format check 15 + command: cargo fmt --all --check 16 + - name: Tests 17 + command: cargo test --workspace