File tree Expand file tree Collapse file tree 1 file changed +3
-15
lines changed
Expand file tree Collapse file tree 1 file changed +3
-15
lines changed Original file line number Diff line number Diff line change 4242
4343 runs-on : ${{ matrix.os }}
4444
45- # env:
46- # PHP_EXTENSIONS: mbstring
47- # PHP_INI_VALUES:
48-
4945 strategy :
5046 fail-fast : false
5147 matrix :
5551 php-version :
5652 - " 7.4"
5753 - " 8.0"
58- dependencies :
59- - lowest
60- - highest
6154
6255 steps :
6356 - name : " Configure git to avoid issues with line endings"
7265 with :
7366 php-version : ${{ matrix.php-version }}
7467 coverage : pcov
75- # extensions: ${{ env.PHP_EXTENSIONS }}
76- # ini-values: ${{ env.PHP_INI_VALUES }}
68+ # extensions:
69+ # ini-values:
7770
7871 - name : " Determine composer cache directory on Linux"
7972 if : matrix.os == 'ubuntu-latest'
9083 key : php${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.json') }}
9184 restore-keys : php${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-
9285
93- - name : " Install lowest dependencies with composer"
94- if : matrix.dependencies == 'lowest'
95- run : composer update --no-ansi --no-interaction --no-progress --no-suggest --prefer-lowest
96-
97- - name : " Install highest dependencies with composer"
98- if : matrix.dependencies == 'highest'
86+ - name : " Install dependencies with composer"
9987 run : composer update --no-ansi --no-interaction --no-progress --no-suggest
10088
10189 - name : " Run tests with phpunit"
You can’t perform that action at this time.
0 commit comments