From 802b06b7bf001de88e35b7d2f608b7f8c23c4802 Mon Sep 17 00:00:00 2001 From: Gustavo Gonzalez Date: Wed, 24 Jul 2024 14:26:44 -0400 Subject: [PATCH] + --- .github/workflows/codecov-coverage.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/codecov-coverage.yml b/.github/workflows/codecov-coverage.yml index 6051faa32d..5cfba4a813 100644 --- a/.github/workflows/codecov-coverage.yml +++ b/.github/workflows/codecov-coverage.yml @@ -56,6 +56,9 @@ jobs: - name: Install cargo-llvm-cov uses: taiki-e/install-action@cargo-llvm-cov + - name: Install nextest + uses: taiki-e/install-action@nextest + - name: Install protoc uses: arduino/setup-protoc@v3 @@ -66,7 +69,7 @@ jobs: - name: cargo llvm-cov # Follow the test command in `coverage.yml` # but without release mode to avoid long build times - run: cargo llvm-cov --workspace --features=evm-tracing --lcov --output-path lcov.info + run: cargo llvm-cov nextest --release --workspace --features=evm-tracing --lcov --output-path lcov.info - name: Record Rust version run: echo "RUST=$(rustc --version)" >> "$GITHUB_ENV"