Skip to content

Commit 568444c

Browse files
authored
chore: bump to v1.1.0 (#15)
1 parent dd0e1c7 commit 568444c

File tree

3 files changed

+18
-15
lines changed

3 files changed

+18
-15
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# 1.1.0
2+
3+
- feat: added support to exclude files
4+
5+
```yaml
6+
uses: VGVentures/very-good-coverage@v1.1.0
7+
with:
8+
path: "./coverage/lcov.info"
9+
min_coverage: 95
10+
exclude: "**/*_observer.dart **/change.dart"
11+
```
12+
113
# 1.0.0
214
315
- initial release 🎉

README.md

+5-14
Original file line numberDiff line numberDiff line change
@@ -23,25 +23,16 @@ A Github Action which helps enforce a minimum code coverage threshold.
2323

2424
**Default** 100
2525

26-
## Example usage
27-
28-
```yaml
29-
uses: VGVentures/very-good-coverage@v1.0.0
30-
with:
31-
path: "./coverage/lcov.info"
32-
min_coverage: 95
33-
```
34-
3526
### `exclude`
3627

37-
**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.
28+
**Optional** List of paths to exclude from the coverage report, separated by an empty space ` `. Supports `globs` to describe file patterns.
3829

3930
## Example usage
4031

4132
```yaml
42-
uses: VGVentures/very-good-coverage@v1.0.0
33+
uses: VGVentures/very-good-coverage@v1.1.0
4334
with:
44-
path: "./coverage/lcov.95.info"
45-
min_coverage: 100
35+
path: "./coverage/lcov.info"
36+
min_coverage: 95
4637
exclude: "**/*_observer.dart **/change.dart"
47-
```
38+
```

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "very-good-coverage",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"description": "A Github Action which helps enforce code coverage threshold using lcov",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)