From cae230783e218cdfcf42ee175ea63d70be585da1 Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Sun, 4 May 2025 00:39:23 +0100 Subject: [PATCH] Enhance output messages for code coverage and documentation steps in unit tests workflow --- .github/workflows/run-unit-tests.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/run-unit-tests.yml b/.github/workflows/run-unit-tests.yml index d975d8a..0ad6482 100644 --- a/.github/workflows/run-unit-tests.yml +++ b/.github/workflows/run-unit-tests.yml @@ -39,11 +39,13 @@ jobs: - name: Install cargo-llvm-cov uses: taiki-e/install-action@cargo-llvm-cov - name: Generate code coverage - run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info - - name: Run doc-tests - run: cargo test --doc --all-features --workspace --release - - name: Test docs generation - run: cargo doc --no-deps --release + run: | + echo "Running tests with code coverage" + cargo llvm-cov --all-features --release --workspace --lcov --output-path lcov.info + echo "Running doctests" + cargo test --doc --all-features --workspace --release + echo "Generating documentation (no-deps)" + cargo doc --no-deps --release - name: Upload coverage to Codecov uses: codecov/codecov-action@v3 with: