From a9fcbd90414d415c61138fab8fa41d7ab2de3f6c Mon Sep 17 00:00:00 2001 From: Wouter Sioen Date: Thu, 11 Jan 2024 09:23:28 +0100 Subject: [PATCH] Run tests on PHP8.2 and PHP8.3 as well This will allow to verify compatibility with the latest PHP versions. --- .github/workflows/run-tests.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 95de655..484b6d0 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -21,7 +21,7 @@ jobs: strategy: matrix: - php-version: ['7.2.5', '7.4', '8.0', '8.1'] + php-version: ['7.2.5', '7.4', '8.0', '8.1', '8.2', '8.3'] variant: [normal] dependencies: [highest] allowed-to-fail: [true] @@ -42,6 +42,16 @@ jobs: variant: normal allowed-to-fail: false symfony-version: latest + - php-version: '8.2' + dependencies: highest + variant: normal + allowed-to-fail: false + symfony-version: latest + - php-version: '8.3' + dependencies: highest + variant: normal + allowed-to-fail: false + symfony-version: latest steps: - name: "Checkout code" uses: actions/checkout@v2.3.3