File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change 86
86
with :
87
87
directory : empty
88
88
name : Windows (${{ matrix.python }}, ${{ matrix.arch }}${{ matrix.extra_name }})
89
+ # multiple flags is marked as an error in codecov UI, but is actually fine
90
+ # https://github.com/codecov/feedback/issues/567
91
+ flags : Windows,${{ matrix.python }}
89
92
# this option cannot be set in .codecov.yml
90
93
fail_ci_if_error : true
91
94
@@ -136,6 +139,7 @@ jobs:
136
139
with :
137
140
directory : empty
138
141
name : Ubuntu (${{ matrix.python }}${{ matrix.extra_name }})
142
+ flags : Ubuntu,${{ matrix.python }}
139
143
fail_ci_if_error : true
140
144
141
145
macOS :
@@ -171,6 +175,7 @@ jobs:
171
175
with :
172
176
directory : empty
173
177
name : macOS (${{ matrix.python }})
178
+ flags : macOS,${{ matrix.python }}
174
179
fail_ci_if_error : true
175
180
176
181
# run CI on a musl linux
@@ -191,11 +196,15 @@ jobs:
191
196
run : python -m venv .venv
192
197
- name : Run tests
193
198
run : source .venv/bin/activate && ./ci.sh
199
+ - name : Get Python version for codecov flag
200
+ id : get-version
201
+ run : echo "version=$(python -V | cut -d' ' -f2 | cut -d'.' -f1,2)" > $GITHUB_OUTPUT
194
202
- if : always()
195
203
uses : codecov/codecov-action@v3
196
204
with :
197
205
directory : empty
198
206
name : Alpine
207
+ flags : Alpine,${{ steps.get-version.outputs.version }}
199
208
fail_ci_if_error : true
200
209
201
210
Cython :
You can’t perform that action at this time.
0 commit comments