Skip to content

Commit

Permalink
missed commit
Browse files Browse the repository at this point in the history
  • Loading branch information
colemanirby committed Mar 7, 2025
1 parent f0ab764 commit a3e2377
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
run: cargo install cargo-llvm-cov

- name: run cargo-llvm-cov
run: cargo llvm-cov --output-path cobertura.xml
run: cargo llvm-cov --output-path lcov.info

- name: Generate Code Coverage Summary
uses: irongut/CodeCoverageSummary@v1.3.0
Expand All @@ -64,6 +64,14 @@ jobs:
thresholds: '50 85'
output: both
format: markdown
- name: Setup LCOV
uses: hrishikesh-kadam/setup-lcov@v1
- name: Report code coverage
uses: zgosalvez/github-actions-report-lcov@v4
with:
coverage-files: lcov.info
minimum-coverage: 50
artifact-name: code-coverage-results

- name: Export Job Summary
run: echo "$(<code-coverage-results.md)" >> $GITHUB_STEP_SUMMARY
run: echo "$(<code-coverage-results)" >> $GITHUB_STEP_SUMMARY

0 comments on commit a3e2377

Please sign in to comment.