Skip to content

Commit 5b5050a

Browse files
Cycloctanewebknjaz
authored andcommitted
remove condition in test workflow
1 parent 774458a commit 5b5050a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/workflows/ci-cd.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -233,14 +233,12 @@ 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'
237236
env:
238237
COLOR: 'yes'
239238
PIP_USER: 1
240239
run: |
241240
python -m coverage xml
242241
- name: Upload coverage
243-
if: github.repository_owner == 'aio-libs'
244242
uses: codecov/codecov-action@v5
245243
with:
246244
file: ./coverage.xml
@@ -254,7 +252,7 @@ jobs:
254252
}}
255253
token: ${{ secrets.CODECOV_TOKEN }}
256254
- name: Upload test results to Codecov
257-
if: ${{ github.repository_owner == 'aio-libs' && !cancelled() }}
255+
if: ${{ !cancelled() }}
258256
uses: codecov/test-results-action@v1
259257
with:
260258
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)