Add kover#710
Merged
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR integrates JetBrains Kover into the Gradle build to generate code coverage reports and updates CI to publish the HTML coverage report to GitHub Pages on develop.
Changes:
- Add and wire up the
org.jetbrains.kotlinx.koverGradle plugin via the version catalog/buildscript. - Enable Kover in common module configuration and configure root coverage aggregation inputs.
- Update the GitHub Actions workflow to run coverage reporting and deploy the HTML report to GitHub Pages (on
develop).
Reviewed changes
Copilot reviewed 3 out of 4 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
modulesCommon.gradle |
Applies the Kover plugin to modules using the shared Gradle script. |
gradle/libs.versions.toml |
Adds the Kover version and gradle plugin dependency to the buildscript bundle. |
build.gradle |
Applies Kover at the root and declares aggregated coverage inputs via kover(project(...)). |
.github/workflows/lint_unitTests_build.yml |
Runs coverage report generation and adds a Pages deployment job for develop. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+14
to
+18
| permissions: | ||
| contents: read | ||
| pages: write | ||
| id-token: write | ||
|
|
e8700de to
8134b01
Compare
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.
Test kover