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 CI
samanthanguyen.me
2 months ago
54e47b5d
f04ff76d
+11
-15
5 changed files
expand all
collapse all
unified
split
.tangled
workflows
build.yml
codeqa-clippy.yml
codeqa-rustfmt.yml
test-miri.yml
test.yml
+7
-7
.tangled/workflows/build.yml
···
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
15
- name: Setup Rust
16
16
-
run: |
16
16
+
command: |
17
17
rustup set profile minimal
18
18
rustup toolchain install stable
19
19
rustup override set stable
20
20
- name: Print environment info
21
21
-
run: |
21
21
+
command: |
22
22
cargo --version
23
23
rustup --version
24
24
- name: Build
25
25
-
run: cargo build --verbose --all-features
25
25
+
command: cargo build --verbose --all-features
+1
-2
.tangled/workflows/codeqa-clippy.yml
···
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:
+1
-2
.tangled/workflows/codeqa-rustfmt.yml
···
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:
+1
-2
.tangled/workflows/test-miri.yml
···
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:
+1
-2
.tangled/workflows/test.yml
···
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: