Skip to content
Open
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
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ The following table lists all available inputs supported by this action. Please

| Name | Value Type | Description |
| --- | --- | --- |
| `version` | Version Requirement | Version of gcovr to be installed (leave empty for pipx default). Set `force_install` to `true` if used. |
| `force_install` | Boolean | Force installation, especially to be used together with `version`. |
| `root` | Path | Root directory of your source files. Defaults to the current directory. File names are reported relative to this directory. |
| `gcov-executable` | Executable name with optional arguments | Use a specific [gcov](https://gcc.gnu.org/onlinedocs/gcc/Gcov.html) executable. It must match the compiler you are using, e.g., `llvm-cov gcov` for LLVM Clang. |
| `excludes` | One or more regular expression patterns | Exclude source files that match these filters. |
Expand Down
5 changes: 5 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ branding:
icon: check-circle
color: green
inputs:
version:
description: Version of gcovr to be installed (leave empty for pipx default). Set `force_install` to `true` if used.
force_install:
description: Force installation, especially to be used together with `version`.
default: false
root:
description: Root directory of your source files. Defaults to the current directory. File names are reported relative to this directory.
gcov-executable:
Expand Down
Loading
Loading