diff options
author | Smolevich <[email protected]> | 2019-11-07 17:45:03 +0300 |
---|---|---|
committer | Smolevich <[email protected]> | 2019-11-07 17:45:03 +0300 |
commit | 0c9efa70e01ce7899fc9620f08a9d0f68fe71995 (patch) | |
tree | 83ee50215f739e8bfca2026140bec48abaea0355 /.github | |
parent | fc6cef7233fad1fe46bea5a265b044715211bfbb (diff) |
Update ci file
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/blank.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml index f47bb5b6..4ef24eb2 100644 --- a/.github/workflows/blank.yml +++ b/.github/workflows/blank.yml @@ -42,16 +42,20 @@ jobs: env: DEBUG: ${{secrets.DEBUG}} - - name: Install dependencies and download binary roadrunner + - name: Show versions run: | export GO111MODULE=on php -v composer -V go version + + - name: Install dependencies and download binary roadrunner + run: | 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 + - name: Run golang tests run: | go test -race -v -coverprofile=lib.txt -covermode=atomic |