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: