From 7f1950a739b90934069c96c9390dd2bcb7151af2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lauren=C8=9Biu=20Nicola?= Date: Sun, 16 Mar 2025 11:50:54 +0200 Subject: [PATCH] Use cargo nextest on CI --- src/tools/rust-analyzer/.github/workflows/ci.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/tools/rust-analyzer/.github/workflows/ci.yaml b/src/tools/rust-analyzer/.github/workflows/ci.yaml index 7a6b43a05315..fa4612f1b06a 100644 --- a/src/tools/rust-analyzer/.github/workflows/ci.yaml +++ b/src/tools/rust-analyzer/.github/workflows/ci.yaml @@ -105,6 +105,8 @@ jobs: - name: Cache Dependencies uses: Swatinem/rust-cache@9bdad043e88c75890e36ad3bbc8d27f0090dd609 + - uses: taiki-e/install-action@nextest + - name: Bump opt-level if: matrix.os == 'ubuntu-latest' run: sed -i '/\[profile.dev]/a opt-level=1' Cargo.toml @@ -122,7 +124,7 @@ jobs: - name: Test if: matrix.os == 'ubuntu-latest' || matrix.os == 'windows-latest' || github.event_name == 'push' - run: cargo test -- --quiet + run: cargo nextest run --no-fail-fast --hide-progress-bar --status-level fail - name: Switch to stable toolchain run: |