Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement Cobertura reports #28

Merged
merged 4 commits into from
Mar 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Annotate changed lines in this pr that are uncovered

The coverage information is got from the (jest) output json or lcov data files. If a file is ignored from coverage it does not appear in the
coverage results and thus does not get flagged as uncovered by this action.
The coverage information is got from the Istanbul output JSON, Cobertura or LCOV data files. If a file is ignored from coverage it does not appear in the coverage results and thus does not get flagged as uncovered by this action.

## Usage

Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ inputs:
coverage-file:
description: containing the coverage data in either istanbul or lcov format
coverage-format:
description: Format of the coverage file - either 'istanbul' or 'lcov'. Default 'istanbul'.
description: Format of the coverage file - one of 'istanbul', 'cobertura' or 'lcov'. Default 'istanbul'.
required: false
default: 'istanbul'
base-ref:
Expand Down
Loading
Loading