From 9b729d6c3ed63a2aa2464e6d0f683de94501e5cb Mon Sep 17 00:00:00 2001 From: Daniil Polyakov Date: Wed, 17 Dec 2025 17:02:00 +0300 Subject: [PATCH] feat: use nextest in CI --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ed89155f..60b508a4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -90,10 +90,13 @@ jobs: - name: Install active toolchain run: rustup install + - name: Install nextest + run: cargo install cargo-nextest + - name: Unit tests env: RISC0_DEV_MODE: "1" - run: cargo test --workspace + run: cargo nextest run --no-fail-fast - name: Test valid proof env: