Skip to content

Commit a60ecbb

Browse files
authored
Merge pull request PrestaShop#118 from Progi1984/php85
Added support for PHP 8.5 (on develop branch)
2 parents 66f06b2 + dcd23ab commit a60ecbb

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/integration.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,12 @@ jobs:
1717
runs-on: ubuntu-latest
1818
strategy:
1919
matrix:
20-
php: [ '8.1', '8.2', '8.3', '8.4' ]
20+
php: [ '8.1', '8.2', '8.3', '8.4', '8.5' ]
2121
prestashop_version: ['develop', '9.0.x']
22+
exclude:
23+
# 9.0.x doesn't support PHP 8.5
24+
- php: '8.5'
25+
prestashop_version: '9.0.x'
2226
fail-fast: false
2327
steps:
2428
- name: Checkout module code

.github/workflows/php.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ jobs:
2424
- name: PHP syntax checker 8.4
2525
uses: prestashop/github-action-php-lint/8.4@master
2626

27+
- name: PHP syntax checker 8.5
28+
uses: prestashop/github-action-php-lint/8.5@master
29+
2730
# Check the PHP code follow the coding standards
2831
php-cs-fixer:
2932
name: PHP-CS-Fixer

0 commit comments

Comments
 (0)