From 2d649fdfe8510e6da931d2d02c1bec2c81a68371 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Mierzwa?= Date: Mon, 1 Feb 2021 18:43:35 +0000 Subject: [PATCH] fix(ci): retry failing go tests (#2703) --- .github/workflows/test.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d85479bfd..8e6222ded 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -44,7 +44,11 @@ jobs: run: make mock-assets - name: Test Go code - run: make test-go + uses: nick-invision/retry@v2.4.0 + with: + timeout_minutes: 10 + max_attempts: 5 + command: make test-go - name: Report code coverage uses: codecov/codecov-action@v1