Skip to content

Commit 80994bc

Browse files
authored
Merge pull request #4444 from hugovk/codecov-bash
Use Codecov bash because the Action times out on macOS
2 parents de179eb + a529f0f commit 80994bc

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,7 @@ jobs:
106106

107107
- name: Upload coverage
108108
if: success()
109-
uses: codecov/codecov-action@v1
110-
with:
111-
token: ${{ secrets.CODECOV_TOKEN }}
112-
flags: ${{ matrix.codecov-flag }}
113-
name: ${{ matrix.os }} Python ${{ matrix.python-version }}
109+
run: bash <(curl -s https://codecov.io/bash) -F ${{ matrix.codecov-flag }}
110+
env:
111+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
112+
CODECOV_NAME: ${{ matrix.os }} Python ${{ matrix.python-version }}

0 commit comments

Comments
 (0)