Skip to content

Commit 61fb123

Browse files
chore: split command, remove prefix
1 parent e9fe37b commit 61fb123

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/build.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,16 @@ jobs:
370370
- name: Run grcov
371371
shell: bash
372372
run: |
373-
grcov $(find . -name "profile-*.profraw" -print) --source-dir . --binary-path ./target/debug/ --output-type lcov --branch --ignore-not-existing --llvm --keep-only "src/**" --output-path ./reports/lcov.info
373+
grcov $(find . -name "profile-*.profraw" -print) \
374+
--binary-path ./target/debug/ \
375+
--branch \
376+
--keep-only "src/**" \
377+
--llvm \
378+
--ignore-not-existing \
379+
--output-path ./reports/lcov.info \
380+
--output-type lcov \
381+
--prefix-path ${PWD}
382+
--source-dir .
374383
375384
- name: Upload coverage results (to Codecov.io)
376385
uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24 # v5.4.3

0 commit comments

Comments
 (0)