File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed
Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -21,8 +21,8 @@ script:
2121 - GITLAB_URL="http://127.0.0.1" GITLAB_TOKEN="secret" go test -v ./gitlab
2222
2323go :
24- - 1.6
2524 - 1.7
25+ - 1.8
2626 - tip
2727
2828matrix :
Original file line number Diff line number Diff line change @@ -120,7 +120,8 @@ But there's no need to manually edit this file. Instead use the config commands
120120You'll need a [Go dev environment](https://golang.org/doc/install).
121121
122122` ` ` sh
123- git clone https://github.com/xanzy/go-gitlab
123+ git clone https://github.com/clns/gitlab-cli
124+ cd gitlab-cli
124125git submodule --init update
125126` ` `
126127
@@ -157,3 +158,11 @@ su gitlab-psql
157158# 'http://docker' is for Docker beta for Windows.
158159GITLAB_URL="http://localhost:8055" GITLAB_TOKEN="secret" go test -v ./gitlab
159160` ` `
161+
162+ # ## Vendored dependencies
163+
164+ All external dependencies should be available in the [vendor/](vendor) directory.
165+
166+ To list all dependencies run `go list -f '{{.ImportPath}}:{{"\n"}} {{join .Imports "\n "}}' ./...`.
167+
168+ To vendor a package run `git submodule add https://github.com/google/go-github vendor/github.com/google/go-github`.
You can’t perform that action at this time.
0 commit comments