From 56ad70eb42b7e0083d496b185716f01654aa93ba Mon Sep 17 00:00:00 2001 From: Matt Joiner Date: Mon, 4 Mar 2024 16:00:47 +1100 Subject: [PATCH] Add a timeout to fs tests in CI --- .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 1e43e47d..fd66c36a 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -17,7 +17,7 @@ jobs: - uses: ./.github/actions/go-common - run: go test -race $(go list ./... | grep -v /fs | grep -v /possum) continue-on-error: true - - run: go test -race ./fs/... + - run: go test -race -timeout 1m ./fs/... if: ${{ ! contains(matrix.os, 'windows') }} continue-on-error: true -- 2.48.1