about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLaurențiu Nicola <lnicola@users.noreply.github.com>2025-03-16 17:38:08 +0000
committerGitHub <noreply@github.com>2025-03-16 17:38:08 +0000
commit2e7901e90c53c7bd8b93889b588687116af670e5 (patch)
tree0fa1f2b52bc9177b9bc1b9dce676979dd7e31335
parent4848b1bc89932080492116760128413d772b5ae7 (diff)
parent7f1950a739b90934069c96c9390dd2bcb7151af2 (diff)
downloadrust-2e7901e90c53c7bd8b93889b588687116af670e5.tar.gz
rust-2e7901e90c53c7bd8b93889b588687116af670e5.zip
Merge pull request #19374 from lnicola/nextest
minor: Use cargo nextest on CI
-rw-r--r--src/tools/rust-analyzer/.github/workflows/ci.yaml4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tools/rust-analyzer/.github/workflows/ci.yaml b/src/tools/rust-analyzer/.github/workflows/ci.yaml
index 7a6b43a0531..fa4612f1b06 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: |