tangled
alpha
login
or
join now
nesv.ca
/
kube
0
fork
atom
Personal collection of Kubernetes things.
0
fork
atom
overview
issues
pulls
pipelines
ci: Add spindle pipeline
nesv.ca
1 month ago
1d1fde04
0ff4e00f
+23
1 changed file
expand all
collapse all
unified
split
.tangled
workflows
test.yaml
+23
.tangled/workflows/test.yaml
···
1
1
+
---
2
2
+
{
3
3
+
when:
4
4
+
[
5
5
+
{ event: ["push", "manual"], branch: ["main", "push-*"] },
6
6
+
{ event: ["pull_request"], branch: ["main"] },
7
7
+
],
8
8
+
9
9
+
engine: "nixery",
10
10
+
11
11
+
clone: { skip: false, depth: 1, submodules: false },
12
12
+
13
13
+
dependencies: { nixpkgs: ["rustup"] },
14
14
+
15
15
+
steps:
16
16
+
[
17
17
+
{ name: "install stable toolchain", command: "rustup default stable" },
18
18
+
{ name: "install clippy", command: "rustup component add clippy" },
19
19
+
{ name: "lint", command: "cargo clippy" },
20
20
+
{ name: "test", command: "cargo test" },
21
21
+
{ name: "build", command: "cargo build --release" },
22
22
+
],
23
23
+
}