From f83f42f5c95cc001ef8312e9c06c9904b879307d Mon Sep 17 00:00:00 2001 From: Taishi Kasuga Date: Sun, 8 Sep 2024 16:39:13 +0900 Subject: [PATCH] Mitigate long running job for truffleruby in CI by workaround --- .github/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 4f8d5d275..c69eff54d 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -94,7 +94,7 @@ jobs: - name: Booting up Redis run: make start - name: Test - run: bundle exec rake test:${{ matrix.suite }} + run: timeout 90 bundle exec rake test:${{ matrix.suite }} - name: Shutting down Redis run: make stop