We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af31379 commit 76cd39eCopy full SHA for 76cd39e
1 file changed
.github/workflows/test.yml
@@ -19,13 +19,12 @@ jobs:
19
name: "PHP ${{ matrix.php-versions }} (with ${{ matrix.php-extensions }}) test on ${{ matrix.operating-system }}/${{ matrix.arch }}"
20
steps:
21
- 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"
+ uses: shivammathur/setup-php@v2
+ with:
+ php-version: ${{ matrix.php-versions }}
+ extensions: "mbstring, intl, ${{ matrix.php-extensions }}"
+ tools: "composer, phpize"
+ coverage: xdebug
29
30
- name: Checkout
31
# We use v1 due to https://github.com/actions/checkout/issues/334
0 commit comments