Skip to content

Commit 72e7ca8

Browse files
committed
chore(ci): use ini workaround for php 8.5 only
1 parent 65bb7cb commit 72e7ca8

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/main.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,18 @@ jobs:
1515
uses: actions/checkout@v6
1616

1717
- name: Setup PHP
18+
if: ${{ matrix.php != '8.5' }}
1819
uses: shivammathur/setup-php@v2
1920
with:
2021
php-version: ${{ matrix.php }}
2122
coverage: none
23+
24+
- name: Setup PHP with register_arg_argv
25+
uses: shivammathur/setup-php@v2
26+
if: ${{ matrix.php == '8.5' }}
27+
with:
28+
php-version: ${{ matrix.php }}
29+
coverage: none
2230
# this ini directive seems to be off by default in PHP 8.5
2331
# see https://github.com/php/php-src/issues/20279
2432
# enable it because codeception relies on it.

0 commit comments

Comments
 (0)