diff options
author | Shupilkin Stanislav Yurevich <[email protected]> | 2019-10-23 21:24:58 +0300 |
---|---|---|
committer | Shupilkin Stanislav Yurevich <[email protected]> | 2019-10-23 21:24:58 +0300 |
commit | 15e61972ffc28cba9109a923647bebeb2a3831c8 (patch) | |
tree | 9368372f1047e807a7890c79784e3a2dc4082311 /.github | |
parent | 5419ff1454a9b1258a7c925b85e6de26ab4d908a (diff) |
Add action shivammathur/setup-php
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/blank.yml | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml index cb9fe0f3..55d28777 100644 --- a/.github/workflows/blank.yml +++ b/.github/workflows/blank.yml @@ -25,12 +25,19 @@ jobs: - name: Check out code into the Go module directory uses: actions/checkout@v1 + - name: Install PHP + uses: shivammathur/setup-php@master + with: + php-version: ${{ matrix.php }} + extension-csv: dom + coverage: xdebug + - name: Install dependencies and download binary roadrunner run: | export GO111MODULE=on - php${{ matrix.php }} -v + php -v composer -V go mod download composer install --no-interaction --prefer-source - find src/ -name "*.php" -print0 | xargs -0 -n1 -P8 php${{ matrix.php }} -l + find src/ -name "*.php" -print0 | xargs -0 -n1 -P8 php -l chmod +x bin/rr && bin/rr get-binary |