From a1b178e45b2ebfd98d8238562bd2554effcb3cb6 Mon Sep 17 00:00:00 2001 From: Devon Sawatsky Date: Mon, 11 Aug 2025 19:54:14 +0000 Subject: [PATCH] jj ci experiment --- .tangled/workflows/deploy.yaml | 20 ++++++++++++++++++++ 1 file(s) changed, 20 insertion(s)(+), 0 deletion(s)(-) diff --git a/.tangled/workflows/deploy.yaml b/.tangled/workflows/deploy.yaml new file mode 100644 --- /dev/null +++ b/.tangled/workflows/deploy.yaml @@ -0,0 +1,20 @@ +when: + - event: ["push", "pull_request"] + branch: ["trunk"] + +dependencies: + nixpkgs: + - nix + - cargo + - rustc + - rustfmt + - clippy + +steps: + - name: "lint & fmt" + command: | + cargo clippy + cargo fmt --check + - name: test + command: | + cargo test -- tangled.sh