File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed
Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -19,13 +19,12 @@ jobs:
1919 name : " PHP ${{ matrix.php-versions }} (with ${{ matrix.php-extensions }}) test on ${{ matrix.operating-system }}/${{ matrix.arch }}"
2020 steps :
2121 - name : Install PHP
22- run : |
23- spc -U
24- spc --php-version "${{ matrix.php-versions }}" \
25- --extensions "mbstring, intl, ${{ matrix.php-extensions }}" \
26- --ini-values "post_max_size=256M, max_execution_time=180" \
27- --coverage "xdebug" \
28- --tools "composer,phpize"
22+ uses : shivammathur/setup-php@v2
23+ with :
24+ php-version : ${{ matrix.php-versions }}
25+ extensions : " mbstring, intl, ${{ matrix.php-extensions }}"
26+ tools : " composer, phpize"
27+ coverage : xdebug
2928
3029 - name : Checkout
3130 # We use v1 due to https://github.com/actions/checkout/issues/334
You can’t perform that action at this time.
0 commit comments