We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88ed5d8 commit 1bd95c2Copy full SHA for 1bd95c2
.github/workflows/coverage.yml
@@ -92,8 +92,14 @@ jobs:
92
run: |
93
dart pub global run combine_coverage:combine_coverage --repo-path="./" --output-directory="coverage"
94
95
+ - name: Fix source file paths in LCOV
96
+ run: |
97
+ # Remove leading slash from source file paths to make them relative
98
+ sed -i 's|^SF:/|SF:|g' coverage/lcov.info
99
+
100
- name: Upload combined coverage report
101
uses: coverallsapp/github-action@v2
102
with:
103
github-token: ${{ secrets.GITHUB_TOKEN }}
104
path-to-lcov: ./coverage/lcov.info
105
+ base-path: ./
0 commit comments