We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b4ec5d commit f88e769Copy full SHA for f88e769
1 file changed
.github/workflows/main.yml
@@ -14,26 +14,13 @@ jobs:
14
- name: Checkout code
15
uses: actions/checkout@v6
16
17
- - name: Setup PHP != 8.5
18
- if: ${{ matrix.php != '8.5' }}
+ - name: Setup PHP
19
uses: shivammathur/setup-php@v2
20
with:
21
php-version: ${{ matrix.php }}
22
coverage: none
23
tools: phpstan, phpcs
24
25
- - name: Setup PHP 8.5
26
- if: ${{ matrix.php == '8.5' }}
27
- uses: shivammathur/setup-php@v2
28
- with:
29
- php-version: ${{ matrix.php }}
30
- coverage: none
31
- tools: phpstan, phpcs
32
- # this ini directive seems to be off by default in PHP 8.5
33
- # see https://github.com/php/php-src/issues/20279
34
- # enable it because codeception relies on it.
35
- ini-values: register_argc_argv=1
36
-
37
- name: Validate composer.json and composer.lock
38
run: composer validate
39
0 commit comments