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}}