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
8ef56448
0ff4e00f
0/1
test.yaml
failed
17s
+21
1 changed file
expand all
collapse all
unified
split
.tangled
workflows
test.yaml
+21
.tangled/workflows/test.yaml
···
1
1
+
---
2
2
+
{
3
3
+
when:
4
4
+
[
5
5
+
{ event: ["push", "manual"], branch: ["main"] },
6
6
+
{ event: ["pull_request"], branch: ["main"] },
7
7
+
],
8
8
+
9
9
+
engine: "nixery",
10
10
+
11
11
+
dependencies: { nixpkgs: ["rustup"] },
12
12
+
13
13
+
steps:
14
14
+
[
15
15
+
{ name: "install stable toolchain", command: "rustup default stable" },
16
16
+
{ name: "install clippy", command: "rustup component add clippy" },
17
17
+
{ name: "lint", command: "cargo clippy" },
18
18
+
{ name: "test", command: "cargo test" },
19
19
+
{ name: "build", command: "cargo build --release" },
20
20
+
],
21
21
+
}