diff options
Diffstat (limited to '.github/workflows/blank.yml')
-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 |