File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -233,12 +233,14 @@ jobs:
233233 run : pytest -m dev_mode --cov-append --numprocesses=0
234234 shell : bash
235235 - name : Turn coverage into xml
236+ if : github.repository_owner == 'aio-libs'
236237 env :
237238 COLOR : ' yes'
238239 PIP_USER : 1
239240 run : |
240241 python -m coverage xml
241242 - name : Upload coverage
243+ if : github.repository_owner == 'aio-libs'
242244 uses : codecov/codecov-action@v5
243245 with :
244246 file : ./coverage.xml
@@ -252,14 +254,15 @@ jobs:
252254 }}
253255 token : ${{ secrets.CODECOV_TOKEN }}
254256 - name : Upload test results to Codecov
255- if : ${{ !cancelled() }}
257+ if : ${{ github.repository_owner == 'aio-libs' && !cancelled() }}
256258 uses : codecov/test-results-action@v1
257259 with :
258260 token : ${{ secrets.CODECOV_TOKEN }}
259261
260262 benchmark :
261263 name : Benchmark
262264 needs : gen_llhttp
265+ if : github.repository_owner == 'aio-libs'
263266
264267 runs-on : ubuntu-latest
265268 timeout-minutes : 9
You can’t perform that action at this time.
0 commit comments