From b3adaf6686c4afd1c9ebb39e27f244c99e3181f5 Mon Sep 17 00:00:00 2001 From: Jonathan LELIEVRE Date: Fri, 29 Nov 2024 17:30:17 +0100 Subject: [PATCH] Check PHP syntax for PHP 8.3 and 8.4 --- .github/workflows/php.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index edc7254ca..b21a47bbc 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -2,7 +2,7 @@ name: PHP tests on: [push, pull_request] jobs: php-linter: - name: PHP Syntax check 7.1 => 8.2 + name: PHP Syntax check runs-on: ubuntu-latest steps: - name: Checkout @@ -29,6 +29,11 @@ jobs: - name: PHP syntax checker 8.2 uses: prestashop/github-action-php-lint/8.2@master + - name: PHP syntax checker 8.3 + uses: prestashop/github-action-php-lint/8.3@master + + - name: PHP syntax checker 8.4 + uses: prestashop/github-action-php-lint/8.4@master # Check the PHP code follow the coding standards php-cs-fixer: