We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0b4970 commit 663bacdCopy full SHA for 663bacd
Makefile
@@ -1,4 +1,4 @@
1
-.PHONY: githooks install test goimports govet golint docker-build docker-push cover
+.PHONY: githooks install test test-docker goimports govet golint docker-build docker-push cover
2
3
githooks:
4
ln -sf ../../githooks/pre-commit .git/hooks/pre-commit
@@ -9,6 +9,10 @@ install:
9
test:
10
go test -race ./...
11
12
+test-docker:
13
+ docker build -t twilio/twilio-go .
14
+ docker run twilio/twilio-go go test -race ./...
15
+
16
cluster-test:
17
go test -race --tags=cluster
18
0 commit comments