File tree 2 files changed +10
-16
lines changed
2 files changed +10
-16
lines changed Original file line number Diff line number Diff line change @@ -68,27 +68,21 @@ jobs:
68
68
run : make test
69
69
70
70
- name : Store test result artifacts
71
- uses : actions/upload-artifact@v3
71
+ uses : actions/upload-artifact@v4
72
72
with :
73
- path : coverage.xml
73
+ path : ${{ matrix.python-version }}-${{ matrix.sqlalchemy-version }}-${{ matrix.postgres-drivername }}- coverage.xml
74
74
75
- - name : Coveralls
76
- env :
77
- COVERALLS_FLAG_NAME : run-${{ inputs.working-directory }}
78
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
79
- COVERALLS_PARALLEL : true
80
- run : |
81
- pip install tomli coveralls
82
- coveralls --service=github
75
+ - uses : codecov/codecov-action@v4
76
+ with :
77
+ token : ${{ secrets.CODECOV_TOKEN }}
78
+ name : ${{ matrix.python-version }}-${{ matrix.sqlalchemy-version }}-${{ matrix.postgres-drivername }}
79
+ files : coverage.xml
83
80
84
81
finish :
85
82
needs :
86
83
- test
87
84
runs-on : ubuntu-latest
88
85
steps :
89
- - name : Coveralls Finished
90
- env :
91
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
86
+ - name : Join
92
87
run : |
93
- pip install tomli coveralls
94
- coveralls --service=github --finish
88
+ echo 'done'
Original file line number Diff line number Diff line change 1
1
# SQLAlchemy Declarative Extensions
2
2
3
3
[ ![ Actions Status] ( https://github.com/dancardin/sqlalchemy-declarative-extensions/workflows/test/badge.svg )] ( https://github.com/dancardin/sqlalchemy-declarative-extensions/actions )
4
- [ ![ Coverage Status ] ( https://coveralls .io/repos/github/ DanCardin/sqlalchemy-declarative-extensions/badge.svg?branch=main )] ( https://coveralls .io/github /DanCardin/sqlalchemy-declarative-extensions?branch=main )
4
+ [ ![ codecov ] ( https://codecov .io/gh/ DanCardin/sqlalchemy-declarative-extensions/graph/ badge.svg?token=DyS4xtntRo )] ( https://codecov .io/gh /DanCardin/sqlalchemy-declarative-extensions )
5
5
[ ![ Documentation Status] ( https://readthedocs.org/projects/sqlalchemy-declarative-extensions/badge/?version=latest )] ( https://sqlalchemy-declarative-extensions.readthedocs.io/en/latest/?badge=latest )
6
6
7
7
See the full documentation
You can’t perform that action at this time.
0 commit comments