From 73a0610168f07f1bcf4f96b4079c5c8266615828 Mon Sep 17 00:00:00 2001 From: Timm Friebe Date: Sun, 22 Oct 2023 13:45:17 +0200 Subject: [PATCH] Add PHP 8.4 --- .github/workflows/ci.yml | 4 ++-- ChangeLog.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 05af35d..e5424b0 100755 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,11 +11,11 @@ jobs: if: "!contains(github.event.head_commit.message, 'skip ci')" name: PHP ${{ matrix.php-versions }} on ${{ matrix.os }} runs-on: ${{ matrix.os }} - continue-on-error: ${{ matrix.php-versions == '8.3' }} + continue-on-error: ${{ matrix.php-versions >= '8.3' }} strategy: fail-fast: false matrix: - php-versions: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3'] + php-versions: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4'] os: [ubuntu-latest, windows-latest] steps: diff --git a/ChangeLog.md b/ChangeLog.md index 156f8be..628dae9 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -3,6 +3,7 @@ HandleBars change log ## ?.?.? / ????-??-?? +* Added PHP 8.4 to the test matrix - @thekid * Optimized parsing `{{.}}` by not parsing following text - @thekid ## 9.1.0 / 2023-07-25