We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f0d731 commit 5fff8e4Copy full SHA for 5fff8e4
3 files changed
.gitignore
@@ -1,3 +1,5 @@
1
bin
2
+vendor
3
+Gopkg.lock
4
*.so
5
*.h
.travis.yml
@@ -15,7 +15,13 @@ matrix:
15
- go: tip
16
fast_finish: true
17
18
+before_install:
19
+ - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then curl -L -s https://github.com/golang/dep/releases/download/v0.5.0/dep-linux-amd64 -o $GOPATH/bin/dep; fi
20
+ - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then wget https://github.com/golang/dep/releases/download/v0.5.0/dep-darwin-amd64 -O $GOPATH/bin/dep; fi
21
+ - chmod +x $GOPATH/bin/dep
22
+
23
install:
24
+ - dep ensure
25
- go get -u github.com/alecthomas/gometalinter
26
- gometalinter --install
27
Gopkg.toml
0 commit comments