tangled
alpha
login
or
join now
jonas.tngl.sh
/
advent-of-code
0
fork
atom
Advent of Code solutions in Rust
0
fork
atom
overview
issues
pulls
pipelines
ci: run tests through nextest on spindle
jonas.tngl.sh
4 months ago
34b1731f
ccf86b73
1/1
rust.yml
success
6m 36s
+5
-1
1 changed file
expand all
collapse all
unified
split
.tangled
workflows
rust.yml
+5
-1
.tangled/workflows/rust.yml
reviewed
···
12
12
- rustc
13
13
- cargo
14
14
- clippy
15
15
+
- cargo-nextest
15
16
16
17
steps:
17
18
- name: "Build all projects"
···
19
20
cargo build --release --verbose --locked
20
21
- name: "Clippy"
21
22
command: |
22
22
-
cargo clippy --release --workspace --locked
23
23
+
cargo clippy --release --workspace --locked
24
24
+
- name: Run tests
25
25
+
command: |
26
26
+
cargo nextest run --release --locked