diff options
author | Shupilkin Stanislav Yurevich <[email protected]> | 2019-10-23 21:06:51 +0300 |
---|---|---|
committer | Shupilkin Stanislav Yurevich <[email protected]> | 2019-10-23 21:06:51 +0300 |
commit | 0b636e3dc914eeed9849239cf46f00fa17dcb49e (patch) | |
tree | 998979151ffa65b140ae09b97b438aa45049389a /.github | |
parent | d38f45a4795a95f1c3382829c6dc7cb0345f23e4 (diff) |
Fix typo and change step
Diffstat (limited to '.github')
-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 |