Skip to content

Commit 1df925d

Browse files
authored
Fix coveralls by changing the extension to .lcov (#1198)
* Try to use Coveralls output from grcov * Use .lcov extension instead of .info This reverts commit d14e0e7.
1 parent 0ec113b commit 1df925d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,17 +150,17 @@ jobs:
150150
run: |
151151
set -e
152152
mv tests/retworkx*profraw .
153-
./grcov . --binary-path ./target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore "/*" -o ./coveralls.info
153+
./grcov . --binary-path ./target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore "/*" -o ./coveralls.lcov
154154
- uses: actions/upload-artifact@v4
155155
with:
156156
name: coverage
157-
path: coveralls.info
157+
path: coveralls.lcov
158158
- name: Coveralls
159159
uses: coverallsapp/github-action@v2
160160
with:
161161
github-token: ${{ secrets.GITHUB_TOKEN }}
162162
format: lcov
163-
file: ./coveralls.info
163+
file: ./coveralls.lcov
164164
docs:
165165
if: github.repository_owner == 'Qiskit'
166166
needs: [tests]

0 commit comments

Comments
 (0)