From 3218cf8afe4e7d102a62dcfd82d4562807cad274 Mon Sep 17 00:00:00 2001 From: Hugo Date: Sat, 22 Feb 2020 13:47:28 +0200 Subject: [PATCH] Use Codecov bash because the Action times out on macOS --- .github/workflows/test.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ba0e18cf406..137cc750a9e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -106,8 +106,7 @@ jobs: - name: Upload coverage if: success() - uses: codecov/codecov-action@v1 - with: - token: ${{ secrets.CODECOV_TOKEN }} - flags: ${{ matrix.codecov-flag }} - name: ${{ matrix.os }} Python ${{ matrix.python-version }} + run: bash <(curl -s https://codecov.io/bash) -F ${{ matrix.codecov-flag }} + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} + CODECOV_NAME: ${{ matrix.os }} Python ${{ matrix.python-version }}