File tree Expand file tree Collapse file tree 4 files changed +14
-602
lines changed
Expand file tree Collapse file tree 4 files changed +14
-602
lines changed Original file line number Diff line number Diff line change 11name : Python package
22
3- on : [workflow_dispatch, pull_request]
3+ on :
4+ push :
5+ branches :
6+ - master
7+ pull_request :
8+ workflow_dispatch :
49
510jobs :
611 python-check :
@@ -29,10 +34,12 @@ jobs:
2934 poetry ci
3035 shell : bash
3136 - name : Upload coverage to Codecov
32- if : runner.os == 'Linux'
3337 uses : codecov/codecov-action@v5
3438 with :
3539 token : ${{ secrets.CODECOV_TOKEN }}
36- files : ./coverage.xml
37- flags : unittests
38- name : codecov-umbrella
40+ - name : Upload test results to Codecov
41+ uses : codecov/codecov-action@v5
42+ if : ${{ !cancelled() }}
43+ with :
44+ token : ${{ secrets.CODECOV_TOKEN }}
45+ report_type : test_results
Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ coverage.xml
4646* .cover
4747.hypothesis /
4848.pytest_cache
49+ junit.xml
4950
5051# Translations
5152* .mo
You can’t perform that action at this time.
0 commit comments