Skip to content

Commit

Permalink
Use .lcov extension instead of .info
Browse files Browse the repository at this point in the history
This reverts commit d14e0e7.
  • Loading branch information
IvanIsCoding committed May 21, 2024
1 parent d14e0e7 commit 0befda2
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,16 +150,17 @@ jobs:
run: |
set -e
mv tests/retworkx*profraw .
./grcov . --binary-path ./target/debug/ -s . -t coveralls --branch --ignore-not-existing --ignore "/*" -o ./coveralls.json
./grcov . --binary-path ./target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore "/*" -o ./coveralls.lcov
- uses: actions/upload-artifact@v4
with:
name: coverage
path: coveralls.json
path: coveralls.lcov
- name: Coveralls
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
file: ./coveralls.json
format: lcov
file: ./coveralls.lcov
docs:
if: github.repository_owner == 'Qiskit'
needs: [tests]
Expand Down

0 comments on commit 0befda2

Please sign in to comment.