Skip to content

Commit 3be6b59

Browse files
committed
Fix
1 parent 81e761f commit 3be6b59

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/actions/coverage/action.yaml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,3 @@ runs:
3232
with:
3333
name: ${{ inputs.artifact_name }}
3434
path: build/coverage_report
35-
36-
- name: Upload to Codecov
37-
uses: codecov/codecov-action@v4
38-
with:
39-
token: ${{ secrets.CODECOV_TOKEN }}
40-
files: build/coverage.info
41-
fail_ci_if_error: true

.github/workflows/ci.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,10 @@ jobs:
2020
with:
2121
build_type: Debug
2222
- uses: ./.github/actions/coverage
23+
24+
- name: Upload to Codecov
25+
uses: codecov/codecov-action@v4
26+
with:
27+
token: ${{ secrets.CODECOV_TOKEN }}
28+
files: build/coverage.info
29+
fail_ci_if_error: true

0 commit comments

Comments
 (0)