Skip to content

Commit 234ac7d

Browse files
committed
Update README, don't test on go 1.6 anymore, add go 1.8 to test on
[skip ci]
1 parent b2e6e35 commit 234ac7d

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ script:
2121
- GITLAB_URL="http://127.0.0.1" GITLAB_TOKEN="secret" go test -v ./gitlab
2222

2323
go:
24-
- 1.6
2524
- 1.7
25+
- 1.8
2626
- tip
2727

2828
matrix:

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,8 @@ But there's no need to manually edit this file. Instead use the config commands
120120
You'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
124125
git submodule --init update
125126
```
126127

@@ -157,3 +158,11 @@ su gitlab-psql
157158
# 'http://docker' is for Docker beta for Windows.
158159
GITLAB_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`.

0 commit comments

Comments
 (0)