Skip to content

Commit 6dbf2f6

Browse files
committed
refactor github workflow: simplify code coverage tool paths for improved readability and maintainability
1 parent 09bcdab commit 6dbf2f6

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

.github/workflows/ubuntu.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -385,13 +385,9 @@ jobs:
385385
--exclude '.*modules/util/include/func_test_util.hpp' \
386386
--exclude '.*modules/util/src/func_test_util.cpp' \
387387
--gcov-ignore-parse-errors \
388-
--search-paths . \
389-
--search-paths gcov_data/rank_0 \
390-
--search-paths gcov_data/rank_1 \
391-
--search-paths gcov_data/rank_2 \
392-
--search-paths gcov_data/rank_3 \
393388
--xml --output ../coverage.xml \
394-
--html=../cov-report/index.html --html-details
389+
--html=../cov-report/index.html --html-details \
390+
. gcov_data/rank_0 gcov_data/rank_1 gcov_data/rank_2 gcov_data/rank_3
395391
- name: Upload coverage reports to Codecov
396392
uses: codecov/[email protected]
397393
with:

0 commit comments

Comments
 (0)