Skip to content

Commit 6ab2b76

Browse files
committed
chore(ci): add php 8.5
1 parent cf2ddaa commit 6ab2b76

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
strategy:
1313
matrix:
14-
php: [8.1, 8.2, 8.3, 8.4]
14+
php: [8.1, 8.2, 8.3, 8.4, 8.5]
1515

1616
steps:
1717
- name: Checkout code
@@ -21,6 +21,10 @@ jobs:
2121
uses: shivammathur/setup-php@v2
2222
with:
2323
php-version: ${{ matrix.php }}
24+
# this ini directive seems to be off by default in PHP 8.5
25+
# see https://github.com/php/php-src/issues/20279
26+
# enable it because codeception relies on it.
27+
ini-values: register_argc_argv=1
2428

2529
- name: Validate composer.json and composer.lock
2630
run: composer validate

0 commit comments

Comments
 (0)