tangled
alpha
login
or
join now
samanthanguyen.me
/
rust
0
fork
atom
repository template for Rust projects
0
fork
atom
overview
issues
pulls
pipelines
ci: fix spindle CI workflows
samanthanguyen.me
2 months ago
c714d439
1fdf4fb1
3/5
build.yml
success
18s
codeqa-clippy.yml
success
18s
codeqa-rustfmt.yml
success
18s
test-miri.yml
failed
1s
test.yml
failed
2s
+16
-22
5 changed files
expand all
collapse all
unified
split
.tangled
workflows
build.yml
codeqa-clippy.yml
codeqa-rustfmt.yml
test-miri.yml
test.yml
+8
-10
.tangled/workflows/build.yml
reviewed
···
1
1
when:
2
2
-
- event: ["pull_request"]
2
2
+
- event: ["push", "pull_request"]
3
3
branch: ["main"]
4
4
5
5
-
engine:
6
6
-
- nixery
5
5
+
engine: "nixery"
7
6
8
7
dependencies:
9
9
-
- cargo
10
10
-
- rustup
8
8
+
nixpkgs:
9
9
+
- cargo
10
10
+
- rustup
11
11
12
12
steps:
13
13
-
- name: Checkout repository
14
14
-
uses: actions/checkout@v6
15
13
- name: Setup Rust
16
16
-
run: |
14
14
+
command: |
17
15
rustup set profile minimal
18
16
rustup toolchain install stable
19
17
rustup override set stable
20
18
- name: Print environment info
21
21
-
run: |
19
19
+
command: |
22
20
cargo --version
23
21
rustup --version
24
22
- name: Build
25
25
-
run: cargo build --verbose --all-features
23
23
+
command: cargo build --verbose --all-features
+2
-3
.tangled/workflows/codeqa-clippy.yml
reviewed
···
1
1
when:
2
2
-
- event: ["pull_request"]
2
2
+
- event: ["push", "pull_request"]
3
3
branch: ["main"]
4
4
5
5
-
engine:
6
6
-
- nixery
5
5
+
engine: "nixery"
7
6
8
7
dependencies:
9
8
nixpkgs:
+2
-3
.tangled/workflows/codeqa-rustfmt.yml
reviewed
···
1
1
when:
2
2
-
- event: ["pull_request"]
2
2
+
- event: ["push", "pull_request"]
3
3
branch: ["main"]
4
4
5
5
-
engine:
6
6
-
- nixery
5
5
+
engine: "nixery"
7
6
8
7
dependencies:
9
8
nixpkgs:
+2
-3
.tangled/workflows/test-miri.yml
reviewed
···
1
1
when:
2
2
-
- event: ["pull_request"]
2
2
+
- event: ["push", "pull_request"]
3
3
branch: ["main"]
4
4
5
5
-
engine:
6
6
-
- nixery
5
5
+
engine: "nixery"
7
6
8
7
dependencies:
9
8
nixpkgs:
+2
-3
.tangled/workflows/test.yml
reviewed
···
1
1
when:
2
2
-
- event: ["pull_request"]
2
2
+
- event: ["push", "pull_request"]
3
3
branch: ["main"]
4
4
5
5
-
engine:
6
6
-
- nixery
5
5
+
engine: "nixery"
7
6
8
7
dependencies:
9
8
nixpkgs: