From 5f93dc5885b6aa64d11e2308c7e7863f58b2ff4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Dr=C3=B6nner?= Date: Mon, 16 Jan 2023 14:51:18 +0100 Subject: [PATCH] use nextest in test --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 405543680..79b65d73e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,6 +51,8 @@ jobs: - name: Init rustup toolchain # somehow rustup show will take care to initialize the version based on the toolchain file run: rustup show + - name: Install latest nextest release + uses: taiki-e/install-action@nextest - name: setup rust build cache uses: Swatinem/rust-cache@v2 with: @@ -86,7 +88,7 @@ jobs: - name: Check with Clippy run: cargo clippy --all-targets ${{ matrix.features }} ${{ matrix.build }} -- -D warnings - name: Run tests - run: cargo test ${{ matrix.features }} ${{ matrix.build }} --verbose + run: cargo nextest run ${{ matrix.features }} ${{ matrix.build }} --verbose build: runs-on: ${{matrix.os}}