From 1eb0854c70b390b625e7010d3878bf5a207ae3d5 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 | 15 +++++++++++++++ 1 file changed, 15 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..e490b77 --- /dev/null +++ b/.tangled/workflows/test.yml @@ -0,0 +1,15 @@ +when: + - event: ["push", "pull_request"] + branch: main + +engine: nixery + +dependencies: + nixpkgs: + - cargo + +steps: + - name: Format check + command: cargo fmt --all --check + - name: Tests + command: cargo test --workspace -- 2.52.0