Skip to content

Commit 284de85

Browse files
committed
Use nextest as test runner
Signed-off-by: Matthias Beyer <[email protected]>
1 parent 3d4abee commit 284de85

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/msrv.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,17 @@ jobs:
4343
- name: Cache
4444
uses: Swatinem/rust-cache@v2
4545

46+
- name: Install nextest
47+
uses: taiki-e/install-action@nextest
48+
4649
- name: Install toolchain
4750
uses: dtolnay/rust-toolchain@master
4851
with:
4952
toolchain: ${{ matrix.rust }}
5053

51-
- name: Run cargo test
54+
- name: Run cargo nextest
5255
continue-on-error: ${{ matrix.rust == 'beta' }}
53-
run: cargo test --all-features
56+
run: cargo nextest run --all-features
5457

5558
fmt:
5659
needs: [check]

0 commit comments

Comments
 (0)