Skip to content

Commit 598f6ae

Browse files
committed
Formal Support for Php8.5
1 parent 38d1a6a commit 598f6ae

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/php.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,7 @@ jobs:
4848
fail-fast: false
4949
matrix:
5050
# Disabled PHPStan in '7.1'
51-
php: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
52-
#php: ['8.4']
51+
php: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5']
5352
steps:
5453
- name: Setup PHP
5554
uses: shivammathur/setup-php@v2
@@ -66,7 +65,7 @@ jobs:
6665
run: ./vendor/bin/phpstan analyse -c phpstan.neon.php73.dist
6766

6867
- name: Run phpstan Php8/Php7.4
69-
if: matrix.php == '7.4' || matrix.php == '8.0' || matrix.php == '8.1' || matrix.php == '8.2' || matrix.php == '8.3' || matrix.php == '8.4'
68+
if: matrix.php == '7.4' || matrix.php == '8.0' || matrix.php == '8.1' || matrix.php == '8.2' || matrix.php == '8.3' || matrix.php == '8.4' || matrix.php == '8.5'
7069
run: ./vendor/bin/phpstan analyse -c phpstan.neon.dist
7170

7271
phpunit:
@@ -86,6 +85,7 @@ jobs:
8685
- '8.2'
8786
- '8.3'
8887
- '8.4'
88+
- '8.5'
8989

9090
include:
9191
- php: 'nightly'
@@ -118,8 +118,8 @@ jobs:
118118
if: matrix.php == '7.3' || matrix.php == '7.4' || matrix.php == '8.0'
119119
run: ./vendor/bin/phpunit -c phpunit9.xml.dist --no-coverage
120120

121-
- name: Run phpunit 8.1 8.2 8.4
122-
if: matrix.php == '8.1' || matrix.php == '8.2' || matrix.php == '8.4'
121+
- name: Run phpunit 8.1 8.2 8.4 8.5
122+
if: matrix.php == '8.1' || matrix.php == '8.2' || matrix.php == '8.4' || matrix.php == '8.5'
123123
run: ./vendor/bin/phpunit -c phpunit10.xml.dist --no-coverage
124124

125125
- name: Run phpunit nightly experimental

0 commit comments

Comments
 (0)