Skip to content

Commit 3c542d3

Browse files
committed
ci: update workflow to use GitHub artifacts for coverage instead of external services
1 parent 0f417d7 commit 3c542d3

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -73,13 +73,12 @@ jobs:
7373

7474
- name: Generate code coverage
7575
run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info
76-
77-
- name: Upload coverage to Codecov
78-
uses: codecov/codecov-action@v3
76+
- name: Upload coverage report
77+
uses: actions/upload-artifact@v4
7978
with:
80-
files: lcov.info
81-
token: ${{ secrets.CODECOV_TOKEN }}
82-
fail_ci_if_error: true
79+
name: coverage-report
80+
path: lcov.info
81+
8382

8483
security:
8584
name: Security Audit

0 commit comments

Comments
 (0)