From 95145af5beae26155c0d199b47f0b5c3e3ea6987 Mon Sep 17 00:00:00 2001 From: Ian Davis Date: Thu, 28 Oct 2021 14:47:20 +0100 Subject: [PATCH] Introduce 120s sleep in linux builds --- .github/workflows/go-test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/go-test.yml b/.github/workflows/go-test.yml index 7010dcc..caa62b5 100644 --- a/.github/workflows/go-test.yml +++ b/.github/workflows/go-test.yml @@ -33,6 +33,10 @@ jobs: uses: protocol/multiple-go-modules@v1.2 with: run: go test -v -coverprofile module-coverage.txt ./... + - name: Sleep for 120 seconds + if: ${{ matrix.os == 'ubuntu' }} + run: sleep 120s + shell: bash - name: Run tests (32 bit) if: ${{ matrix.os != 'macos' }} # can't run 32 bit tests on OSX. uses: protocol/multiple-go-modules@v1.2