Skip to content

Commit a596e63

Browse files
committed
fix: send coverage not test_results
1 parent b28d94c commit a596e63

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/go_app_pull_requests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ jobs:
216216
uses: codecov/codecov-action@v5
217217
with:
218218
token: ${{ secrets.CODECOV_TOKEN }}
219-
report_type: test_results
219+
report_type: coverage
220220
files: ${{ matrix.module }}/coverage.txt
221221
verbose: true
222222
fail_ci_if_error: true # optional (default = false)

.github/workflows/go_lib_pull_requests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ jobs:
222222
uses: codecov/codecov-action@v5
223223
with:
224224
token: ${{ secrets.CODECOV_TOKEN }}
225-
report_type: test_results
225+
report_type: coverage
226226
files: ${{ matrix.module }}/coverage.txt
227227
verbose: true
228228
fail_ci_if_error: true # optional (default = false)

.github/workflows/go_lib_push_main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ jobs:
177177
uses: codecov/codecov-action@v5
178178
with:
179179
token: ${{ secrets.CODECOV_TOKEN }}
180-
report_type: test_results
180+
report_type: coverage
181181
files: ${{ matrix.module }}/coverage.txt
182182
verbose: true
183183
fail_ci_if_error: true # optional (default = false)

0 commit comments

Comments
 (0)