From 7227229b326bf5f69a96840fc44b2f9aac127438 Mon Sep 17 00:00:00 2001 From: Sachymetsu Date: Thu, 11 Dec 2025 10:32:40 +0100 Subject: [PATCH] feat: Add CI Adds a quick CI pipeline for format checking and unit testing --- .tangled/workflows/test.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .tangled/workflows/test.yml diff --git a/.tangled/workflows/test.yml b/.tangled/workflows/test.yml new file mode 100644 index 0000000..f7e0353 --- /dev/null +++ b/.tangled/workflows/test.yml @@ -0,0 +1,16 @@ +when: + - event: ["push", "pull_request"] + branch: main + +engine: nixery + +dependencies: + nixpkgs: + - cargo + - rustfmt + +steps: + - name: Format check + command: cargo fmt --all --check + - name: Tests + command: cargo test --workspace -- 2.51.2