Conversation
Enhanced code coverage reporting with module-specific details. Because everyone loves personalized analytics, right?
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR enhances the Codecov integration in the CI workflow by adding module-specific inputs and cleaning up the upload step.
- Specifies exact coverage file paths per module via
files - Tags uploads with
flagsand labels them usingname - Removes the now-redundant
working-directoryfor the Codecov step
Comments suppressed due to low confidence (1)
.github/workflows/tests.yml:42
- Removing the
working-directoryfrom the Codecov upload step may cause the specifiedfilespath to not resolve correctly; confirm that${{ matrix.module }}/coverage.outis located relative to the workflow root.
working-directory: ${{ matrix.module }}
Welcome to Codecov 🎉Once you merge this PR into your default branch, you're all set! Codecov will compare coverage reports and display results in all future pull requests. Thanks for integrating Codecov - We've got you covered ☂️ |
Made Codecov flags unique per module, so they can bask in their identity like snowflakes!
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.
Enhanced code coverage reporting with module-specific details. Because everyone loves personalized analytics, right?
This pull request updates the
.github/workflows/tests.ymlfile to improve the Codecov integration by adding more specific configuration options.Enhancements to Codecov integration:
.github/workflows/tests.yml: Updated the Codecov action to include specific coverage file paths (files), flags (flags), and a name (name) for better tracking and organization of test coverage data.