File tree Expand file tree Collapse file tree 1 file changed +14
-2
lines changed
Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -14,18 +14,30 @@ jobs:
1414
1515 strategy :
1616 matrix :
17- php : [8.2, 8.3, 8.4]
17+ php : [8.2, 8.3, 8.4, 8.5 ]
1818
1919 steps :
2020 - name : Checkout code
2121 uses : actions/checkout@v6
2222
23- - name : Setup PHP
23+ - name : Setup PHP != 8.5
24+ if : ${{ matrix.php != '8.5' }}
2425 uses : shivammathur/setup-php@v2
2526 with :
2627 php-version : ${{ matrix.php }}
2728 coverage : none
2829
30+ - name : Setup PHP 8.5
31+ if : ${{ matrix.php == '8.5' }}
32+ uses : shivammathur/setup-php@v2
33+ with :
34+ php-version : ${{ matrix.php }}
35+ coverage : none
36+ # this ini directive seems to be off by default in PHP 8.5
37+ # see https://github.com/php/php-src/issues/20279
38+ # enable it because codeception relies on it.
39+ ini-values : register_argc_argv=1
40+
2941 - name : Validate composer.json and composer.lock
3042 run : composer validate
3143
You can’t perform that action at this time.
0 commit comments