From 0e160d89e547a14c144da2eb29e6f9d793fdf695 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Hennes?= Date: Mon, 11 Dec 2023 22:12:53 +0100 Subject: [PATCH] Add php8.2 syntax check --- .github/workflows/php.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index a5d4ce6..0aa0fdb 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 5.6|7.2|7.3|7.4 + name: PHP Syntax check 5.6|7.2|7.3|7.4|8.1|8.2 runs-on: ubuntu-latest steps: - name: PHP syntax checker 5.6 @@ -15,6 +15,8 @@ jobs: uses: prestashop/github-action-php-lint/7.4@master - name: PHP syntax checker 8.1 uses: prestashop/github-action-php-lint/8.1@master + - name: PHP syntax checker 8.2 + uses: prestashop/github-action-php-lint/8.2@master # Check the PHP code follow the coding standards php-cs-fixer: @@ -32,7 +34,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - presta-versions: [ '1.7.5.0', 'latest' ] + presta-versions: [ '1.7.8.10','8.0.5','latest'] steps: - name: Setup PHP uses: shivammathur/setup-php@v2