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 1bcedfb commit 823cfeaCopy full SHA for 823cfea
.github/workflows/unit-tests.yml
@@ -23,23 +23,14 @@ jobs:
23
fetch-depth: 2
24
25
- name: Setup PHP with composer and extensions
26
- if: ${{ matrix.php =< '8.3' }}
27
uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php
28
with:
29
php-version: ${{ matrix.php }}
30
coverage: xdebug
31
tools: none
32
33
- - name: Setup PHP with composer and extensions (PHP 8.4)
34
- if: ${{ matrix.php >= '8.4' }}
35
- uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php
36
- with:
37
- php-version: ${{ matrix.php }}
38
- coverage: none
39
- tools: none
40
-
41
- name: "Install Composer dependencies"
42
+ if: ${{ matrix.php <= '8.3' }}
43
uses: "ramsey/composer-install@v2"
44
45
- name: "Install Composer dependencies (PHP 8.4)"
0 commit comments