We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65bb7cb commit 72e7ca8Copy full SHA for 72e7ca8
.github/workflows/main.yml
@@ -15,10 +15,18 @@ jobs:
15
uses: actions/checkout@v6
16
17
- name: Setup PHP
18
+ if: ${{ matrix.php != '8.5' }}
19
uses: shivammathur/setup-php@v2
20
with:
21
php-version: ${{ matrix.php }}
22
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
30
# this ini directive seems to be off by default in PHP 8.5
31
# see https://github.com/php/php-src/issues/20279
32
# enable it because codeception relies on it.
0 commit comments