GitHub Checks
GitHub Checks is meant to provide meaningful code coverage metrics as close to your workflow as possible. This is done by providing line-by-line coverage on your GitHub pull requests so you can access code coverage insights without leaving your code.
This feature is only available for GitHub users as it leveragesGitHub Checks.
❗️
Deprecation of GitHub Annotations Due to API Limitations
GitHub Annotations will be deprecated due to the following API constraints:
- The GitHub API does not provide a way to clear annotations once they are sent. Even if subsequent reports processed by Codecov include updated coverage data, previous annotations remain.
- Annotations do not work if "Flags" or "Components" are configured, due to conflicts with these features.
Codecov recommends using ourbrowser extension as a more reliable alternative to annotations.
Annotations in the "Files Changed" View
Notably, lines that you add on a commit without coverage, will show up in your pull request files view with an annotation.

Added line without coverage annotated in GitHub
Hiding Annotations in the Files View
📘
Annotations making your code hard to read?
You can always justtoggle them on and off with the "a" key
You can always hide annotations in the GitHub Files view by unselecting "Show annotations" in the top right of the file.
This GitHub feature only hides annotations by file, not for the full pull request.
You can also togglechecks on and off by pressing the "a" key.

Hiding Codecov Annotations in Files view
Annotations in the "Checks" Tab
To see annotations, first, go to theChecks
tab under any pull request.
Look for apatch
status underneath theCodecovChecks
dropdown.
To view coverage information in line with your code, click on the icon to the right side of the annotation.
YAML Configuration for GitHub Checks and Codecov
GitHub Checks and annotations for thepatch status are enabled by default for all GitHub users.
Patch
Commit Statuses have to be enabled and set up in order for checks to be present in pull requests.
If you have disabledpatch status
in your YAML, Github Checks Annotations will not show up.
If the top-levelpatch status
in your YAML haspaths
orflags
, GitHub Checks Annotations will not show up.
For example, Github Checks Annotations would beoff if your YAML was:
coverage: status: patch: false
Disabling GitHub Checks Patch Annotations via YAML
Annotations can be disabled using a flag on the top-level section of thecodecov.yml file.
github_checks: annotations: false
Note: If GitHub checks are disabled but statuses are still set up, normal status checks will be used instead.
📘
Self-hosted Codecov Admins
GitHub Checks Patch Annotations may be disabled by default in your instance. If you are not seeing them, and you don't have an entry on your yaml, try setting the above to
true
at either the instance and repo level codecov.yml.
Disabling GitHub Checks completely via YAML
If you want to disable the GitHub checks complete and revert to the older statuses, you can set the following flag on the top-level section of thecodecov.yml file.
github_checks: false
If Disabling checks is something that you need or want, we'd love if you could alsodrop us a ticket explaining how we can improve this feature to better suit your needs.
Updated 4 months ago