diff options
author | Shupilkin Stanislav Yurevich <[email protected]> | 2019-10-23 21:09:03 +0300 |
---|---|---|
committer | Shupilkin Stanislav Yurevich <[email protected]> | 2019-10-23 21:09:03 +0300 |
commit | 5419ff1454a9b1258a7c925b85e6de26ab4d908a (patch) | |
tree | efd3e0faefd3e78e9ca1598978ad3b29ab3c8eb0 /.github | |
parent | 0b636e3dc914eeed9849239cf46f00fa17dcb49e (diff) |
Fix interpreter name for php
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/blank.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml index c1d92556..cb9fe0f3 100644 --- a/.github/workflows/blank.yml +++ b/.github/workflows/blank.yml @@ -28,9 +28,9 @@ jobs: - name: Install dependencies and download binary roadrunner run: | export GO111MODULE=on - php ${{ matrix.php }} -v + php${{ matrix.php }} -v composer -V go mod download composer install --no-interaction --prefer-source - find src/ -name "*.php" -print0 | xargs -0 -n1 -P8 php -l + find src/ -name "*.php" -print0 | xargs -0 -n1 -P8 php${{ matrix.php }} -l chmod +x bin/rr && bin/rr get-binary |