From be1bf2f90928b3317fe9abafa18ccca543318f35 Mon Sep 17 00:00:00 2001 From: Michael Davis Date: Sat, 17 May 2025 09:16:14 -0400 Subject: [PATCH] CI: Set a timeout for the test suite workflow The integration tests have recently become a bit flaky in that individual tests can seem to hang forever. This needs further investigation. In the meantime we should limit the total allowed time for the test workflow to something reasonably low. The default timeout is a very high 360min. --- .github/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 90630aeb3..92dec93bc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -45,6 +45,7 @@ jobs: name: Test Suite runs-on: ${{ matrix.os }} if: github.repository == 'helix-editor/helix' || github.event_name != 'schedule' + timeout-minutes: 30 env: RUST_BACKTRACE: 1 HELIX_LOG_LEVEL: info