From dbb32fb95d04ae4c2057bb733f0aa4d9efbde7e3 Mon Sep 17 00:00:00 2001 From: Arshid Date: Sun, 12 Oct 2025 10:17:49 +0530 Subject: [PATCH 1/3] CI - PHP85 --- .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 1a0b76f5..a54752d6 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -21,7 +21,7 @@ jobs: - uses: shivammathur/setup-php@v2 with: - php-version: 8.2 + php-version: ['8.2', '8.3', '8.4', '8.5'] coverage: none ini-values: zend.assertions=1 From c95ef611f78b67696f015fe9310f6e67135a8c7d Mon Sep 17 00:00:00 2001 From: Arshid Date: Sun, 12 Oct 2025 10:28:30 +0530 Subject: [PATCH 2/3] CI - PHP85 --- .github/workflows/tests.yaml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index a54752d6..b0902ff9 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -12,19 +12,25 @@ env: jobs: tests: - runs-on: ubuntu-latest + strategy: + matrix: + php-version: ['8.2', '8.3', '8.4', '8.5'] + os: [ubuntu-latest] + + runs-on: ${{ matrix.os }} + timeout-minutes: 3 - name: Tests + name: PHP ${{ matrix.php-version }} tests (${{ matrix.os }}) steps: - uses: actions/checkout@v4 - uses: shivammathur/setup-php@v2 with: - php-version: ['8.2', '8.3', '8.4', '8.5'] + php-version: ${{ matrix.php-version }} coverage: none ini-values: zend.assertions=1 - uses: "ramsey/composer-install@v2" - - run: vendor/bin/phpunit + - run: vendor/bin/phpunit \ No newline at end of file From 093a2773d00b4a211e6367a3581e2e837793a5cd Mon Sep 17 00:00:00 2001 From: Arshid Date: Sun, 12 Oct 2025 10:30:12 +0530 Subject: [PATCH 3/3] CI - PHP85 --- .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 b0902ff9..51982b97 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -14,7 +14,7 @@ jobs: tests: strategy: matrix: - php-version: ['8.2', '8.3', '8.4', '8.5'] + php-version: ['8.2', '8.5'] os: [ubuntu-latest] runs-on: ${{ matrix.os }}