Skip to content

Commit 7fccbdf

Browse files
GuillaumeGomezKijewski
authored andcommitted
Remove usage of nextest
1 parent 6a16256 commit 7fccbdf

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

.github/workflows/rust.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -205,12 +205,9 @@ jobs:
205205
- uses: dtolnay/rust-toolchain@master
206206
with:
207207
toolchain: ${{ matrix.rust }}
208-
- uses: taiki-e/install-action@v2
209-
with:
210-
tool: cargo-nextest
211208
- uses: Swatinem/rust-cache@v2
212209
- run: cargo build --all-targets --features full
213-
- run: cargo nextest run --all-targets --no-tests=warn --features full
210+
- run: cargo test --all-targets --features full
214211

215212
Package:
216213
needs: ["Rustfmt", "Docs", "Audit", "Book", "Typos", "Jinja2-Assumptions", "DevSkim", "CargoSort"]
@@ -229,12 +226,9 @@ jobs:
229226
- uses: dtolnay/rust-toolchain@stable
230227
with:
231228
components: clippy
232-
- uses: taiki-e/install-action@v2
233-
with:
234-
tool: cargo-nextest
235229
- uses: Swatinem/rust-cache@v2
236230
- run: cd ${{ matrix.package }} && cargo build --all-targets
237-
- run: cd ${{ matrix.package }} && cargo nextest run --all-targets --no-fail-fast --no-tests=warn
231+
- run: cd ${{ matrix.package }} && cargo test --all-targets
238232
- run: cd ${{ matrix.package }} && cargo clippy --all-targets -- -D warnings
239233

240234
MSRV:

0 commit comments

Comments
 (0)