From 80917f5abc050fd5a5bb3eb418c840d32493f156 Mon Sep 17 00:00:00 2001 From: Alexey <247128645+axkurcom@users.noreply.github.com> Date: Tue, 24 Mar 2026 21:10:56 +0300 Subject: [PATCH] Update test.yml --- .github/workflows/test.yml | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 46d3b0a..259f574 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -34,7 +34,7 @@ jobs: - run: cargo fmt -- --check # ========================== -# Tests +# Test # ========================== test: name: Test @@ -61,7 +61,14 @@ jobs: restore-keys: | ${{ runner.os }}-cargo- - - run: cargo test --verbose + - name: Install nextest + uses: taiki-e/install-action@nextest + + - name: Build tests + run: cargo test --no-run -j $(nproc) + + - name: Run tests + run: cargo nextest run --all-features --no-fail-fast # ========================== # Clippy @@ -92,7 +99,7 @@ jobs: restore-keys: | ${{ runner.os }}-cargo- - - run: cargo clippy -- --cap-lints warn + - run: cargo clippy -j $(nproc) -- --cap-lints warn # ========================== # Udeps @@ -123,5 +130,4 @@ jobs: - name: Install cargo-udeps run: cargo install cargo-udeps || true - # тоже не валит билд - - run: cargo udeps || true \ No newline at end of file + - run: cargo udeps || true