ci: fix go vet and add Go 1.11.x

pull/5380/merge
Unknwon 2018-09-14 22:48:35 -04:00
parent 7a7e07a57c
commit f8302c5470
No known key found for this signature in database
GPG Key ID: 25B575AE3213B2B3
2 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@ go:
- 1.8.x
- 1.9.x
- 1.10.x
- 1.11.x
- master
before_install:

View File

@ -124,7 +124,7 @@ func DeleteBranchPost(c *context.Context) {
if len(commitID) > 0 {
branchCommitID, err := c.Repo.GitRepo.GetBranchCommitID(branchName)
if err != nil {
log.Error(2, "Failed to get commit ID of branch %q: %v", err)
log.Error(2, "Failed to get commit ID of branch %q: %v", branchName, err)
return
}