Skip to content

Commit ad00292

Browse files
authored
Remove relative paths in coverage.yml (#117)
* Remove relative paths in coverage.yml * Set lcov directory
1 parent 10a8180 commit ad00292

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ jobs:
6464
run: |
6565
cd build
6666
ctest --verbose -j ${{ steps.cpu-cores.outputs.count }}
67-
lcov --directory . --capture --output-file coverage.info
68-
lcov --remove coverage.info '/usr/*' "${HOME}"'/.cache/*' 'tests/CMakeFiles/ipc_toolkit_tests.dir/src/tests/*' --output-file coverage.info
67+
lcov --directory ./CMakeFiles/ipc_toolkit.dir/src/ipc --capture --output-file coverage.info
68+
lcov --remove coverage.info '/usr/*' "$HOME/.cache/*" "*/tests/*" --output-file coverage.info
6969
7070
- name: Upload coverage reports to Codecov
7171
uses: codecov/[email protected]

0 commit comments

Comments
 (0)