Skip to content

Commit 7f1950a

Browse files
committed
Use cargo nextest on CI
1 parent fcd6e94 commit 7f1950a

File tree

1 file changed

+3
-1
lines changed
  • src/tools/rust-analyzer/.github/workflows

1 file changed

+3
-1
lines changed

src/tools/rust-analyzer/.github/workflows/ci.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,8 @@ jobs:
105105
- name: Cache Dependencies
106106
uses: Swatinem/rust-cache@9bdad043e88c75890e36ad3bbc8d27f0090dd609
107107

108+
- uses: taiki-e/install-action@nextest
109+
108110
- name: Bump opt-level
109111
if: matrix.os == 'ubuntu-latest'
110112
run: sed -i '/\[profile.dev]/a opt-level=1' Cargo.toml
@@ -122,7 +124,7 @@ jobs:
122124

123125
- name: Test
124126
if: matrix.os == 'ubuntu-latest' || matrix.os == 'windows-latest' || github.event_name == 'push'
125-
run: cargo test -- --quiet
127+
run: cargo nextest run --no-fail-fast --hide-progress-bar --status-level fail
126128

127129
- name: Switch to stable toolchain
128130
run: |

0 commit comments

Comments
 (0)