Skip to content

Commit 510546b

Browse files
committed
fix(ci): fix check coverage
1 parent ecb072e commit 510546b

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

.github/workflows/tests-release.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,10 @@ jobs:
6262
# with the following action we enforce PRs to have a high coverage
6363
# and ensure, changes are tested well enough so that coverage won't fail
6464
- name: check coverage
65-
uses: devmasx/coverage-check-action@v1.2.0
65+
uses: VeryGoodOpenSource/very_good_coverage@v1.2.0
6666
with:
67-
type: lcov
68-
result_path: coverage/lcov.info
67+
path: './coverage/lcov.info'
6968
min_coverage: 95
70-
token: ${{github.token}}
7169

7270
# STEP 3 - Integration tests
7371

.github/workflows/tests.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,7 @@ jobs:
4141
# with the following action we enforce PRs to have a high coverage
4242
# and ensure, changes are tested well enough so that coverage won't fail
4343
- name: check coverage
44-
uses: devmasx/coverage-check-action@v1.2.0
44+
uses: VeryGoodOpenSource/very_good_coverage@v1.2.0
4545
with:
46-
type: lcov
47-
result_path: coverage/lcov.info
46+
path: './coverage/lcov.info'
4847
min_coverage: 95
49-
token: ${{github.token}}

0 commit comments

Comments
 (0)