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 259334e commit 23cf537Copy full SHA for 23cf537
.github/workflows/coverage.yml
@@ -94,10 +94,8 @@ jobs:
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
- # Also ensure paths are properly formatted for Coveralls
100
- sed -i 's|^SF:packages/|SF:./packages/|g' coverage/lcov.info
+ # Convert absolute CI paths to relative paths for Coveralls
+ sed -i 's|^SF:/home/runner/work/supabase-flutter/supabase-flutter/|SF:|g' coverage/lcov.info
101
102
- name: Debug coverage file
103
0 commit comments