From e2e946986b774cc8bb775603d1ec710c7f160318 Mon Sep 17 00:00:00 2001 From: nick evans Date: Wed, 7 May 2025 16:20:46 -0400 Subject: [PATCH] =?UTF-8?q?=E2=9C=85=20Add=20timeouts=20to=20CI=20workflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c535b176..8eac4542 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,6 +26,7 @@ jobs: - { ruby: head, os: windows-latest, experimental: true } runs-on: ${{ matrix.os }} continue-on-error: ${{ matrix.experimental }} + timeout-minutes: 15 steps: - uses: actions/checkout@v4 - name: Set up Ruby @@ -36,6 +37,7 @@ jobs: rubygems: 3.5.14 - name: Run test run: bundle exec rake test + timeout-minutes: 5 # _should_ finish in under a minute - uses: joshmfrankel/simplecov-check-action@main if: matrix.os == 'ubuntu-latest' && github.event_name != 'pull_request'