From 809a0e00edf95e57d74b7809b80e9db756c79e31 Mon Sep 17 00:00:00 2001 From: Alex Chi Z Date: Tue, 17 Dec 2024 23:29:07 -0500 Subject: [PATCH] ci: use cargo-nextest Signed-off-by: Alex Chi Z --- .github/workflows/CI.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 0dadcd1c..a49b90d1 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -46,9 +46,9 @@ jobs: with: command: clippy args: --workspace --all-targets --all-features --locked -- -D warnings + - uses: taiki-e/install-action@nextest - name: Test uses: actions-rs/cargo@v1 with: - command: test - args: --no-fail-fast --workspace --all-features --locked - \ No newline at end of file + command: nextest + args: run --no-fail-fast --workspace --all-features --locked