Skip to content

Commit ab8ec04

Browse files
committed
Fix path
1 parent 4caf2a2 commit ab8ec04

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/coverage_report.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,9 @@ jobs:
4444
run: |
4545
source /opt/ros/${{ matrix.rosdistro }}/setup.bash
4646
cmake --build build --target coverage
47-
gcovr --object-directory build -r .
47+
ROOT_DIR=$(pwd)
48+
cd build
49+
gcovr --object-directory . -r "${ROOT_DIR}"
4850
working-directory: catkin_ws/src/lpp
4951
shell: bash
5052

51-

0 commit comments

Comments
 (0)