Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -484,6 +484,19 @@ jobs:
-a "coverage/ravi.info" \
-o "coverage/merged.info"

- name: Install lcov2xml
run: cargo install lcov2xml

- name: Convert to Cobertura XML
working-directory: ${{runner.workspace}}/build
run: lcov2xml coverage/merged.info -o coverage/cobertura.xml

- name: Upload Cobertura XML
uses: actions/upload-artifact@v4
with:
name: cobertura-coverage
path: ${{runner.workspace}}/build/coverage/cobertura.xml

- name: Coveralls
uses: coverallsapp/github-action@master
with:
Expand Down
Loading
Loading