Personal collection of Kubernetes things.

ci: Add spindle pipeline

+21
+21
.tangled/workflows/test.yaml
··· 1 + --- 2 + { 3 + when: 4 + [ 5 + { event: ["push", "manual"], branch: ["main"] }, 6 + { event: ["pull_request"], branch: ["main"] }, 7 + ], 8 + 9 + engine: "nixery", 10 + 11 + dependencies: { nixpkgs: ["rustup"] }, 12 + 13 + steps: 14 + [ 15 + { name: "install stable toolchain", command: "rustup default stable" }, 16 + { name: "install clippy", command: "rustup component add clippy" }, 17 + { name: "lint", command: "cargo clippy" }, 18 + { name: "test", command: "cargo test" }, 19 + { name: "build", command: "cargo build --release" }, 20 + ], 21 + }