Bruce Marriner 8 years ago
parent
commit
d6c91f2350
1 changed files with 5 additions and 4 deletions
  1. 5 4
      .travis.yml

+ 5 - 4
.travis.yml

@@ -3,10 +3,11 @@ go:
     - 1.4
     - 1.5
     - 1.6
-before_script:
-    - go vet ./..
-gobuild_args:
-    - -race
 install:
     - go get github.com/bwmarrin/discordgo
     - go get -v .
+    - go get -v github.com/golang/lint/golint
+script:
+    - go vet -x ./...
+    - golint ./...
+    - go test -v -race ./...