Integrate Codecov for coverage reporting and update badges#73
Merged
Conversation
Replace the custom badge generation and auto-commit with a codecov/codecov-action. Removed the permissions block, checkout fetch-depth override, genbadge installation, and the steps that generated/committed badges; workflow now uploads reports/coverage/coverage.xml to Codecov to simplify coverage reporting.
Update README badge to use Codecov (linking to the reactix repo on the develop branch) instead of the previous coverage image.
edvinskis
marked this pull request as ready for review
July 23, 2026 09:31
astoeriko
approved these changes
Jul 23, 2026
| git pull --rebase origin develop | ||
| git push No newline at end of file | ||
| - name: Upload coverage reports to Codecov with GitHub Action | ||
| uses: codecov/codecov-action@v5 |
Owner
There was a problem hiding this comment.
The instructions on Codecov suggest to this here:
Suggested change
| uses: codecov/codecov-action@v5 | |
| with: codecov/codecov-action@v5 |
Owner
There was a problem hiding this comment.
Don't know what the difference is.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request updates the project's test coverage reporting workflow by switching from generating and committing a local coverage badge to using Codecov for coverage reporting and badge generation. The workflow is simplified, and the README badge is updated to use Codecov.
Coverage reporting and badge updates:
.github/workflows/coverage.ymlnow uploads coverage reports to Codecov usingcodecov/codecov-action@v5, replacing the previous steps that generated and committed a local coverage badge.Workflow simplification:
permissionsblock and thefetch-depth: 0option in the checkout step have been removed, as they are no longer necessary for the new workflow.genbadge[coverage]package has been removed since badge generation is now handled by Codecov.