File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments