You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This add a coverage-reporter-version parameter that allows
users to specify a version of coverage-reporter to use. It will
default to the latest version if not specified. This currently only
works for Linux and Windows until versioning can be added to
the Coveralls Homebrew tap.
---------
Co-authored-by: Mike Burns <[email protected]>
|`github-token`|_required_| Default if not specified: `${{ github.token }}`. Can be also specified this way: `github-token: ${{ secrets.GITHUB_TOKEN }}`; Coveralls uses this token to verify the appropriate repo at Coveralls and send any new status updates based on your coverage results. This variable is built into Github Actions, so __do not add it to your secrets store__. [More Info](https://help.github.com/en/actions/configuring-and-managing-workflows/authenticating-with-the-github_token)|
18
-
|`file`|_optional_| Default: all coverage files that could be found. Local path to the coverage report file produced by your test suite. An error will be thrown if no file was found. This is the file that will be sent to the Coveralls API. Leave empty if you want to combine many files reports. |
19
-
|`files`|_optional_| Default: all coverage files that could be found. Space-separated list of coverage report files produced by your test suite. Example: `files: coverage/test1.lcov coverage/test2.lcov`|
20
-
|`format`|_optional_| Force coverage report file format. If not specified, coveralls will try to detect the format based on file extension and/or content. Possible values: `lcov`, `simplecov`, `cobertura`, `jacoco`, `gcov`, `golang`, `python`. See also [actual supported coverage report formats list](https://github.com/coverallsapp/coverage-reporter#supported-coverage-report-formats). |
21
-
|`flag-name`|_optional (unique required if parallel)_| Job flag name, e.g. "Unit", "Functional", or "Integration". Will be shown in the Coveralls UI. |
22
-
|`parallel`|_optional_| Set to true for parallel (or matrix) based steps, where multiple posts to Coveralls will be performed in the check. `flag-name` needs to be set and unique, e.g. `flag-name: run ${{ join(matrix.*, ' - ') }}`|
23
-
|`parallel-finished`|_optional_| Set to true in the last job, after the other parallel jobs steps have completed, this will send a webhook to Coveralls to set the build complete. |
24
-
|`carryforward`|_optional_| Comma separated flags used to carryforward results from previous builds if some of the parallel jobs are missing. Used only with `parallel-finished`. |
25
-
|`coveralls-endpoint`|_optional_| Hostname and protocol: `https://<host>`; Specifies a [Coveralls Enterprise](https://enterprise.coveralls.io/) hostname. |
26
-
|`allow-empty`|_optional_| Default: `false`. Don't fail if coverage report is empty or contains no coverage data. |
27
-
|`base-path`|_optional_| Path to the root folder of the project the coverage was collected in. Should be used in monorepos so that coveralls can process the LCOV correctly (e.g. packages/my-project) |
28
-
|`git-branch`|_optional_| Default: GITHUB_REF environment variable. Override the branch name. |
29
-
|`git-commit`|_optional_| Default: GITHUB_SHA environment variable. Override the commit SHA. |
30
-
|`compare-ref`|_optional_| Branch name to compare coverage with. Specify if you want to always check coverage change for PRs against one branch. |
31
-
|`compare-sha`|_optional_| Commit SHA to compare coverage with. |
32
-
|`debug`|_optional_| Default: `false`. Set to `true` to enable debug logging. |
33
-
|`measure`|_optional_| Default: `false`. Set to `true` to enable time time measurement logging. |
34
-
|`fail-on-error`|_optional_| Default: `true`. Set to `false` to avoid CI failure when upload fails due to any errors. |
|`github-token`|_required_| Default if not specified: `${{ github.token }}`. Can be also specified this way: `github-token: ${{ secrets.GITHUB_TOKEN }}`; Coveralls uses this token to verify the appropriate repo at Coveralls and send any new status updates based on your coverage results. This variable is built into Github Actions, so __do not add it to your secrets store__. [More Info](https://help.github.com/en/actions/configuring-and-managing-workflows/authenticating-with-the-github_token)|
18
+
|`file`|_optional_| Default: all coverage files that could be found. Local path to the coverage report file produced by your test suite. An error will be thrown if no file was found. This is the file that will be sent to the Coveralls API. Leave empty if you want to combine many files reports. |
19
+
|`files`|_optional_| Default: all coverage files that could be found. Space-separated list of coverage report files produced by your test suite. Example: `files: coverage/test1.lcov coverage/test2.lcov`|
20
+
|`format`|_optional_| Force coverage report file format. If not specified, coveralls will try to detect the format based on file extension and/or content. Possible values: `lcov`, `simplecov`, `cobertura`, `jacoco`, `gcov`, `golang`, `python`. See also [actual supported coverage report formats list](https://github.com/coverallsapp/coverage-reporter#supported-coverage-report-formats). |
21
+
|`flag-name`|_optional (unique required if parallel)_| Job flag name, e.g. "Unit", "Functional", or "Integration". Will be shown in the Coveralls UI. |
22
+
|`parallel`|_optional_| Set to true for parallel (or matrix) based steps, where multiple posts to Coveralls will be performed in the check. `flag-name` needs to be set and unique, e.g. `flag-name: run ${{ join(matrix.*, ' - ') }}`|
23
+
|`parallel-finished`|_optional_| Set to true in the last job, after the other parallel jobs steps have completed, this will send a webhook to Coveralls to set the build complete. |
24
+
|`carryforward`|_optional_| Comma separated flags used to carryforward results from previous builds if some of the parallel jobs are missing. Used only with `parallel-finished`. |
25
+
|`coveralls-endpoint`|_optional_| Hostname and protocol: `https://<host>`; Specifies a [Coveralls Enterprise](https://enterprise.coveralls.io/) hostname. |
26
+
|`allow-empty`|_optional_| Default: `false`. Don't fail if coverage report is empty or contains no coverage data. |
27
+
|`base-path`|_optional_| Path to the root folder of the project the coverage was collected in. Should be used in monorepos so that coveralls can process the LCOV correctly (e.g. packages/my-project) |
28
+
|`git-branch`|_optional_| Default: GITHUB_REF environment variable. Override the branch name. |
29
+
|`git-commit`|_optional_| Default: GITHUB_SHA environment variable. Override the commit SHA. |
30
+
|`compare-ref`|_optional_| Branch name to compare coverage with. Specify if you want to always check coverage change for PRs against one branch. |
31
+
|`compare-sha`|_optional_| Commit SHA to compare coverage with. |
32
+
|`debug`|_optional_| Default: `false`. Set to `true` to enable debug logging. |
33
+
|`measure`|_optional_| Default: `false`. Set to `true` to enable time time measurement logging. |
34
+
|`fail-on-error`|_optional_| Default: `true`. Set to `false` to avoid CI failure when upload fails due to any errors. |
35
+
|`coverage-reporter-version`|_optional_| Default: `latest`. Version of coverage-reporter to use. Make sure to prefix the version number with 'v'. For example: v0.6.9. Not available currently on macOS. |
0 commit comments