From 9f392dc633f8d86e4ef329353c0e73d247626509 Mon Sep 17 00:00:00 2001 From: Sachymetsu Date: Thu, 11 Dec 2025 10:32:40 +0100 Subject: [PATCH] feat: Add CI Change-Id: kovtmvnuyyopprrnkxvuxnwosuultknl 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.52.0