From eb3a1c53695b9b111e59c7b8fedd58c097fab70a Mon Sep 17 00:00:00 2001 From: Alexey Kopytko Date: Sat, 7 Jun 2025 09:11:45 +0900 Subject: [PATCH] Test on PHP 8.4 --- .github/workflows/ci.yaml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 7a8dd38..8920b53 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -17,7 +17,18 @@ jobs: strategy: matrix: operating-system: ['ubuntu-latest'] - php-version: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3'] + php-version: + - '5.6' + - '7.0' + - '7.1' + - '7.2' + - '7.3' + - '7.4' + - '8.0' + - '8.1' + - '8.2' + - '8.3' + - '8.4' name: CI on ${{ matrix.operating-system }} with PHP ${{ matrix.php-version }}