Skip to content

Commit 9d5eb6d

Browse files
committed
try nextest
1 parent 5c46965 commit 9d5eb6d

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,11 +164,14 @@ jobs:
164164
- name: Cache Rust artifacts
165165
uses: Swatinem/rust-cache@v2
166166

167+
- name: Install cargo-nextest
168+
uses: taiki-e/install-action@nextest
169+
167170
- name: Test
168-
run: cargo test --no-fail-fast --all-targets --all-features --workspace
171+
run: cargo nextest run --no-fail-fast --all-targets --all-features --workspace
169172

170173
- name: Smol Test
171-
run: cargo test --no-fail-fast --all-targets --no-default-features --features "smol" --features "storage-all" --workspace
174+
run: cargo nextest run --no-fail-fast --all-targets --no-default-features --features "smol" --features "storage-all" --workspace
172175

173176
- name: Doc Test
174177
run: cargo test --no-fail-fast --doc --all-features --workspace

0 commit comments

Comments
 (0)