File tree Expand file tree Collapse file tree 1 file changed +29
-1
lines changed Expand file tree Collapse file tree 1 file changed +29
-1
lines changed Original file line number Diff line number Diff line change @@ -121,7 +121,35 @@ jobs:
121
121
TOXPYTHON : ' ${{ matrix.toxpython }}'
122
122
run : >
123
123
tox -e ${{ matrix.tox_env }} -v
124
- - uses : coverallsapp/github-action@v2
124
+
125
+ coveralls :
126
+ name : coveralls coverage
127
+ runs-on : ubuntu-latest
128
+ steps :
129
+ - uses : actions/checkout@v4
130
+ with :
131
+ fetch-depth : 0
132
+ - uses : actions/setup-python@v5
133
+ with :
134
+ python-version : ' 3.11'
135
+ architecture : ' x64'
136
+ - name : install dependencies
137
+ run : |
138
+ python -mpip install --upgrade pip
139
+ python -mpip install --progress-bar=off -r ci/requirements.txt
140
+ virtualenv --version
141
+ pip --version
142
+ tox --version
143
+ pip list --format=freeze
144
+ - name : generate coverage report
145
+ env :
146
+ TOXPYTHON : ' 3.11'
147
+ run : |
148
+ tox -e report
149
+
150
+ - name : Coveralls GitHub Action
151
+ uses :
coverallsapp/[email protected]
152
+
125
153
126
154
deploy_docs :
127
155
name : Deploy docs to GitHub Pages
You can’t perform that action at this time.
0 commit comments