+21
.tangled/workflows/test.yaml
+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", "gcc"] },
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
+
}
History
4 rounds
1 comment
1 commit
expand
collapse
ci: Add spindle pipeline
1/1 success
expand
collapse
expand 1 comment
closed without merging
1 commit
expand
collapse
ci: Add spindle pipeline
1/1 failed
expand
collapse
expand 0 comments
1 commit
expand
collapse
ci: Add spindle pipeline
merged via cli