Skip to content

Commit 63fea08

Browse files
committed
fix: update Codecov action configuration
- Change 'file' parameter to 'files' for codecov-action@v5 - The v5 action requires 'files' (plural) instead of 'file' - This fixes CI failures across all Python versions
1 parent 0e58954 commit 63fea08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
uses: codecov/codecov-action@v5
5151
with:
5252
token: ${{ secrets.CODECOV_TOKEN }}
53-
file: ./coverage.xml
53+
files: ./coverage.xml
5454
flags: unittests
5555
name: codecov-umbrella
5656
fail_ci_if_error: false

0 commit comments

Comments
 (0)