tangled
alpha
login
or
join now
eldridge.cam
/
trilogy
1
fork
atom
Actually just three programming languages in a trenchcoat
1
fork
atom
overview
issues
pulls
pipelines
use different rust package
eldridge.cam
4 months ago
7f46b4d7
52a741aa
0/1
rust.yml
failed
1m 49s
+6
-1
1 changed file
expand all
collapse all
unified
split
.tangled
workflows
rust.yml
+6
-1
.tangled/workflows/rust.yml
···
6
6
7
7
dependencies:
8
8
nixpkgs:
9
9
-
- "cargo"
9
9
+
- "rustup"
10
10
- "clang_18"
11
11
- "valgrind"
12
12
13
13
steps:
14
14
+
- name: "Install Rust"
15
15
+
command: |
16
16
+
rustup toolchain install stable
17
17
+
rustup component add rustfmt
18
18
+
rustup component add clippy
14
19
- name: "Format"
15
20
command: "cargo fmt -- --check"
16
21
- name: "Clippy"