Skip to content

Instantly share code, notes, and snippets.

@ralphpina
Created March 3, 2018 20:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ralphpina/159616ef9c9e86409013d34e2c8caf09 to your computer and use it in GitHub Desktop.
Save ralphpina/159616ef9c9e86409013d34e2c8caf09 to your computer and use it in GitHub Desktop.
Downloading Go Deps Welnys API
# Get Go packages
- run:
name: Get Go packages
# go get. TODO: don't know why the command above is not enough. Probably gotta wait for golang/dep to be adopted.
command: |
go get github.com/jstemmer/go-junit-report \
&& go get -u google.golang.org/appengine \
&& go get -u github.com/golang/dep/cmd/dep \
&& dep ensure \
&& go get ./...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment