From fbe7ed7e344b8d36bfa3094dbca41a24f740095e Mon Sep 17 00:00:00 2001 From: Kai O'Reilly Date: Sun, 24 Nov 2024 23:47:03 -0800 Subject: [PATCH] impose 30s CI timeout to at least make #1343 less bad --- .github/workflows/go.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index bfccf3c54..4140a845b 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -29,7 +29,7 @@ jobs: # we can't test gpu, xyz, and system on the CI since there is no Vulkan support - name: Test - run: go test -v $(go list ./... | grep -v gpu | grep -v xyz | grep -v system) -coverprofile cover.out + run: go test -v $(go list ./... | grep -v gpu | grep -v xyz | grep -v system) -coverprofile cover.out -timeout 30s - name: Update coverage report uses: ncruces/go-coverage-report@v0