From 0f9188f63be3d2aecbb9312738a59988fc9f7a9b Mon Sep 17 00:00:00 2001 From: Sachymetsu Date: Sat, 13 Dec 2025 11:40:06 +0100 Subject: [PATCH] chore: Create CI pipeline Change-Id: rxvnpxkusopxmxyqqtopwsslppououvt --- .tangled/workflows/test.yml | 17 +++++++++++++++++ 1 file changed, 17 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..0a78931 --- /dev/null +++ b/.tangled/workflows/test.yml @@ -0,0 +1,17 @@ +when: + - event: ["push", "pull_request"] + branch: main + +engine: nixery + +dependencies: + nixpkgs: + - clang + - cargo + - rustfmt + +steps: + - name: Format check + command: cargo fmt --all --check + - name: Tests + command: cargo test --workspace -- 2.52.0