diff options
author | Shupilkin Stanislav Yurevich <[email protected]> | 2019-10-23 21:47:41 +0300 |
---|---|---|
committer | Shupilkin Stanislav Yurevich <[email protected]> | 2019-10-23 21:47:41 +0300 |
commit | 14dac9be74e95185a3bf6c724559de5349a1a6e0 (patch) | |
tree | 90b5be1333ce1c929391af3cb125602f4b904ce7 /.github | |
parent | 44fd576f76deef5ab854385b120f3ba6a3aa6078 (diff) |
Update step run
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/blank.yml | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml index dd30cf30..909896e8 100644 --- a/.github/workflows/blank.yml +++ b/.github/workflows/blank.yml @@ -41,16 +41,16 @@ jobs: 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 golanf tests - run: - - go test -race -v -coverprofile=lib.txt -covermode=atomic - - go test ./util -race -v -coverprofile=util.txt -covermode=atomic - - go test ./service -race -v -coverprofile=service.txt -covermode=atomic - - go test ./service/env -race -v -coverprofile=env.txt -covermode=atomic - - go test ./service/rpc -race -v -coverprofile=rpc.txt -covermode=atomic - - go test ./service/http -race -v -coverprofile=http.txt -covermode=atomic - - go test ./service/static -race -v -coverprofile=static.txt -covermode=atomic - - go test ./service/limit -race -v -coverprofile=limit.txt -covermode=atomic - - go test ./service/headers -race -v -coverprofile=headers.txt -covermode=atomic - - go test ./service/metrics -race -v -coverprofile=metrics.txt -covermode=atomic - - go test ./service/health -race -v -coverprofile=health.txt -covermode=atomic + - name: Run golang tests + run: | + go test -race -v -coverprofile=lib.txt -covermode=atomic + go test ./util -race -v -coverprofile=util.txt -covermode=atomic + go test ./service -race -v -coverprofile=service.txt -covermode=atomic + go test ./service/env -race -v -coverprofile=env.txt -covermode=atomic + go test ./service/rpc -race -v -coverprofile=rpc.txt -covermode=atomic + go test ./service/http -race -v -coverprofile=http.txt -covermode=atomic + go test ./service/static -race -v -coverprofile=static.txt -covermode=atomic + go test ./service/limit -race -v -coverprofile=limit.txt -covermode=atomic + go test ./service/headers -race -v -coverprofile=headers.txt -covermode=atomic + go test ./service/metrics -race -v -coverprofile=metrics.txt -covermode=atomic + go test ./service/health -race -v -coverprofile=health.txt -covermode=atomic |