Skip to content

Commit f2765f9

Browse files
GeneAIclaude
authored andcommitted
ci: Update Codecov action to v5 with verbose output
- Upgrade codecov-action from v4 to v5 - Enable verbose mode for better debugging - Fix file parameter name (file -> files) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent e0a3a2d commit f2765f9

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,11 @@ jobs:
5151
python -c "import xml.etree.ElementTree as ET; tree = ET.parse('coverage.xml'); coverage = float(tree.getroot().attrib['line-rate']) * 100; print(f'Coverage: {coverage:.1f}%'); exit(0 if coverage >= 65 else 1)"
5252
5353
- name: Upload coverage to Codecov
54-
uses: codecov/codecov-action@v4
54+
uses: codecov/codecov-action@v5
5555
with:
56-
file: ./coverage.xml
56+
files: ./coverage.xml
5757
fail_ci_if_error: false
58+
verbose: true
5859
env:
5960
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
6061

0 commit comments

Comments
 (0)