We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee2df35 commit 7c328e6Copy full SHA for 7c328e6
.travis.yml
@@ -0,0 +1,6 @@
1
+language: go
2
+
3
+go:
4
+ - "1.12"
5
6
+script: ./Taskfile test
Taskfile
@@ -5,6 +5,10 @@ function generateProtos {
protoc -I ./protobuf ./protobuf/*.proto --go_out=plugins=grpc:./protos
}
7
8
+function test {
9
+ go test -cover -timeout 30s $*
10
+}
11
12
function help {
13
echo "$0 <task> <args>"
14
echo "Tasks:"
0 commit comments