From d1cb24c37dc422167e622bcc7937789f1ecbd917 Mon Sep 17 00:00:00 2001 From: Abdul Malik Ikhsan Date: Wed, 21 Jan 2026 23:12:13 +0700 Subject: [PATCH] Set CI timeout to 4 minutes on Windows env --- .github/workflows/tests.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index cb696a36aeb..767f2436fb7 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -21,7 +21,7 @@ jobs: php-versions: ['8.3', '8.4', '8.5'] runs-on: ${{ matrix.os }} - timeout-minutes: 3 + timeout-minutes: ${{ matrix.os == 'windows-latest' && 4 || 3 }} name: PHP ${{ matrix.php-versions }} tests (${{ matrix.os }}) steps: