add grpc example (#1401)

use grpc helloworld example.
This commit is contained in:
田欧
2018-06-22 09:51:06 +08:00
committed by Bo-Yi Wu
parent bf85b32c1d
commit 737d2fb7ab
7 changed files with 290 additions and 2 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ set -e
echo "mode: count" > coverage.out
for d in $(go list ./... | grep -E 'gin$|binding$|render$'); do
for d in $(go list ./... | grep -E 'gin$|binding$|render$' | grep -v 'examples'); do
go test -v -covermode=count -coverprofile=profile.out $d
if [ -f profile.out ]; then
cat profile.out | grep -v "mode:" >> coverage.out