Skip to content

Commit b0632f7

Browse files
authored
Merge pull request #19374 from lnicola/nextest
minor: Use cargo nextest on CI
2 parents 23e8d13 + 26dc35d commit b0632f7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Diff for: .github/workflows/ci.yaml

+3-1
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)