Skip to content

Commit c191dc6

Browse files
authored
Replace Codecov with GitHub Actions artifacts (#310)
## Summary - Remove Codecov integration from CI workflow - Upload coverage reports as GitHub Actions artifacts instead - Eliminates external dependency and potential security/reliability issues Closes #309
1 parent 57efb58 commit c191dc6

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,10 @@ jobs:
8383
- name: Run all tests
8484
run: make test-all
8585

86-
- name: Upload coverage to Codecov
87-
uses: codecov/codecov-action@v4
86+
- name: Upload coverage artifacts
87+
uses: actions/upload-artifact@v4
8888
with:
89-
file: ./coverage.out
90-
flags: unittests
91-
name: codecov-unit
92-
fail_ci_if_error: false
89+
name: coverage-report
90+
path: |
91+
coverage.out
92+
coverage.html

0 commit comments

Comments
 (0)