From d4af8d409e717295a6ed18735f0e0d12fa543686 Mon Sep 17 00:00:00 2001 From: galargh Date: Tue, 16 Nov 2021 14:21:42 +0100 Subject: [PATCH] extend timeout for CI tests --- .github/actions/go-test-setup/action.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/actions/go-test-setup/action.yml diff --git a/.github/actions/go-test-setup/action.yml b/.github/actions/go-test-setup/action.yml new file mode 100644 index 0000000..2dd57bf --- /dev/null +++ b/.github/actions/go-test-setup/action.yml @@ -0,0 +1,9 @@ +name: extend-tests-timeout +description: add -timeout 20m flag to GOFLAGS to extend timeout for tests + +runs: + using: "composite" + steps: + - name: Extend timeout for tests + shell: bash + run: echo "GOFLAGS=$GOFLAGS -timeout=20m" >> $GITHUB_ENV