From 7de7100f6c481b64f46ddd591184fb10ed5c3238 Mon Sep 17 00:00:00 2001 From: Will Norris Date: Sat, 4 Apr 2020 06:24:34 +0000 Subject: [PATCH] actions: set timeout for uploading to codecov codecov is sometimes slow to respond, and it's not worth holding up the test suite for. --- .github/workflows/tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f9bc853..8dd2e1a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -36,5 +36,6 @@ jobs: - name: Upload coverage to Codecov uses: codecov/codecov-action@v1 + timeout-minutes: 2 with: token: ${{ secrets.CODECOV_TOKEN }}