diff options
-rw-r--r-- | .github/workflows/blank.yml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml index 5a3707c5..c1d92556 100644 --- a/.github/workflows/blank.yml +++ b/.github/workflows/blank.yml @@ -4,7 +4,7 @@ on: push: branches: tags: - pull_requets: + pull_request: jobs: @@ -25,7 +25,12 @@ jobs: - name: Check out code into the Go module directory uses: actions/checkout@v1 - - name: + - name: Install dependencies and download binary roadrunner run: | + export GO111MODULE=on 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 + chmod +x bin/rr && bin/rr get-binary |