From e1e15726b209de88b63b1fc2a67dcf2d937caa31 Mon Sep 17 00:00:00 2001 From: link2xt Date: Wed, 10 Apr 2024 22:28:42 +0000 Subject: [PATCH] ci: use cargo-nextest instead of cargo-test --- .github/workflows/ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 605bca1e39..2b47d0fcf1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -105,10 +105,15 @@ jobs: - name: Cache rust cargo artifacts uses: swatinem/rust-cache@v2 + - name: Install nextest + uses: taiki-e/install-action@v2 + with: + tool: nextest + - name: Tests env: RUST_BACKTRACE: 1 - run: cargo test --workspace + run: cargo nextest run --workspace - name: Test cargo vendor run: cargo vendor