From df49ccfacd3183e6b8dfe098e680ed908cb9f001 Mon Sep 17 00:00:00 2001 From: Tei Im Date: Wed, 10 Apr 2024 16:38:48 -0600 Subject: [PATCH] Increase go test timeout --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c5cd8cad..6a9fc8c6 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -21,7 +21,7 @@ jobs: run: make bin bin/simple bin/minimal working-directory: tests/go-tests - name: Run tests - run: go test -v ./... -race -coverprofile=coverage.out -covermode=atomic + run: go test -v ./... -race -coverprofile=coverage.out -covermode=atomic --timeout=30m working-directory: rvgo - name: Fuzz run: make fuzz