From 15e61972ffc28cba9109a923647bebeb2a3831c8 Mon Sep 17 00:00:00 2001 From: Shupilkin Stanislav Yurevich Date: Wed, 23 Oct 2019 21:24:58 +0300 Subject: Add action shivammathur/setup-php --- .github/workflows/blank.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to '.github') 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 -- cgit v1.2.3