Personal collection of Kubernetes things.

ci: Add spindle pipeline

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