Spaces:
Running
Running
Commit
·
4854088
1
Parent(s):
b9c529a
ci: upgrade codecov-action to v5 and add token
Browse files- .github/workflows/ci.yml +2 -1
.github/workflows/ci.yml
CHANGED
|
@@ -42,9 +42,10 @@ jobs:
|
|
| 42 |
run: uv run pytest tests/unit/ -v --cov=src --cov-report=xml --cov-report=term-missing
|
| 43 |
|
| 44 |
- name: Upload coverage to Codecov
|
| 45 |
-
uses: codecov/codecov-action@
|
| 46 |
with:
|
| 47 |
files: ./coverage.xml
|
|
|
|
| 48 |
fail_ci_if_error: false
|
| 49 |
|
| 50 |
- name: Upload test artifacts
|
|
|
|
| 42 |
run: uv run pytest tests/unit/ -v --cov=src --cov-report=xml --cov-report=term-missing
|
| 43 |
|
| 44 |
- name: Upload coverage to Codecov
|
| 45 |
+
uses: codecov/codecov-action@v5
|
| 46 |
with:
|
| 47 |
files: ./coverage.xml
|
| 48 |
+
token: ${{ secrets.CODECOV_TOKEN }}
|
| 49 |
fail_ci_if_error: false
|
| 50 |
|
| 51 |
- name: Upload test artifacts
|