File tree Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -91,12 +91,18 @@ jobs:
91
91
env :
92
92
PIXELMATCH_BIN : ${{ env.GITHUB_WORKSPACE }}/node_modules/.bin/pixelmatch
93
93
94
- - name : Upload python coverage
94
+ - name : Generate python coverage
95
95
run : |
96
96
tox -e coverage-report
97
- tox -e codecov
98
- env :
99
- CODECOV_NAME : ${{ github.workflow }}
97
+
98
+ - uses : codecov/codecov-action@v5
99
+ name : Upload python coverage
100
+ with :
101
+ files : .tox/coverage/coverage.xml
102
+ flags : python
103
+ name : ${{ github.workflow }}
104
+ token : ${{ secrets.CODECOV_TOKEN }}
105
+ verbose : true
100
106
101
107
- name : Generate js coverage report
102
108
run : npm run report
@@ -107,6 +113,7 @@ jobs:
107
113
files : coverage/lcov.info
108
114
flags : javascript
109
115
name : ${{ github.workflow }}
116
+ token : ${{ secrets.CODECOV_TOKEN }}
110
117
verbose : true
111
118
112
119
lint :
You can’t perform that action at this time.
0 commit comments