generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
18 additions
and
15 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,15 @@ | ||
# 1.1.0 | ||
|
||
- feat: added support to exclude files | ||
|
||
```yaml | ||
uses: VGVentures/[email protected] | ||
with: | ||
path: "./coverage/lcov.info" | ||
min_coverage: 95 | ||
exclude: "**/*_observer.dart **/change.dart" | ||
``` | ||
# 1.0.0 | ||
- initial release 🎉 | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,25 +23,16 @@ A Github Action which helps enforce a minimum code coverage threshold. | |
|
||
**Default** 100 | ||
|
||
## Example usage | ||
|
||
```yaml | ||
uses: VGVentures/[email protected] | ||
with: | ||
path: "./coverage/lcov.info" | ||
min_coverage: 95 | ||
``` | ||
### `exclude` | ||
|
||
**Optional** List of files that you want to exclude from the coverage report, and separated by an empty space ` `. You can also use `globs` to describe file patterns. | ||
**Optional** List of paths to exclude from the coverage report, separated by an empty space ` `. Supports `globs` to describe file patterns. | ||
|
||
## Example usage | ||
|
||
```yaml | ||
uses: VGVentures/very-good-coverage@v1.0.0 | ||
uses: VGVentures/very-good-coverage@v1.1.0 | ||
with: | ||
path: "./coverage/lcov.95.info" | ||
min_coverage: 100 | ||
path: "./coverage/lcov.info" | ||
min_coverage: 95 | ||
exclude: "**/*_observer.dart **/change.dart" | ||
``` | ||
``` |
This file contains 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