Skip to content

Commit 76cd39e

Browse files
committed
Switch back to setup-php
1 parent af31379 commit 76cd39e

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)