summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2023-10-31 09:13:59 +0100
committerMatthias Beyer <mail@beyermatthias.de>2024-02-01 07:38:06 +0100
commit20f0774e39fff9ee78ab901f68678583bba49f46 (patch)
treec6cb2662ef2fbdce5e17f9134911df439c0576fc
parent24e1e3ce8ccb1fdd646848c88803ffd188bb0576 (diff)
Revert "Use nextest as test runner"
The nextest runner does not help enough to be viable. Installing it takes more time than the runner saves, so go back to the normal test runner with this patch. This reverts commit 284de85f4e16f28caece29ae7ae3aa41b48afa54. Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
-rw-r--r--.github/workflows/msrv.yml7
1 files changed, 2 insertions, 5 deletions
diff --git a/.github/workflows/msrv.yml b/.github/workflows/msrv.yml
index 859d953..131ba50 100644
--- a/.github/workflows/msrv.yml
+++ b/.github/workflows/msrv.yml
@@ -39,9 +39,6 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v4.1.1
- - name: Install nextest
- uses: taiki-e/install-action@nextest
-
- name: Install toolchain
uses: dtolnay/rust-toolchain@master
with:
@@ -50,9 +47,9 @@ jobs:
- name: Cache
uses: Swatinem/rust-cache@v2
- - name: Run cargo nextest
+ - name: Run cargo test
continue-on-error: ${{ matrix.rust == 'beta' }}
- run: cargo nextest run --all-features
+ run: cargo test --all-features
fmt:
needs: [check]