Merge pull request #40 from vbatts/golint

Fix golint import path
This commit is contained in:
Vincent Batts 2018-10-31 14:19:30 -04:00 committed by GitHub
commit 27e9409966
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 24 additions and 10 deletions

View File

@ -1,25 +1,39 @@
language: go
go_import_path: github.com/vbatts/git-validation
go:
- tip
- 1.x
- 1.8.x
- 1.7.x
- 1.6.x
- "tip"
- "1.x"
- "1.11.x"
- "1.10.x"
- "1.9.x"
- "1.8.x"
- "1.7.x"
env:
matrix:
sudo: false
before_install:
- go get -u github.com/golang/lint/golint
- mkdir -p $GOPATH/src/github.com/vbatts && ln -sf $(pwd) $GOPATH/src/github.com/vbatts/git-validation && go get ./...
install: true
notifications:
email:
on_success: change
on_failure: always
before_script:
- env
install: true
before_install:
- go get ./...
- if [[ "$(go version |awk '{ print $3 }')" =~ ^go1\.11\. ]] ; then go get -u golang.org/x/lint/golint ; fi
script:
- if [[ "$(go version |awk '{ print $3 }')" =~ ^go1\.11\. ]] ; then golint -set_exit_status ./... ; fi
- go vet -x ./...
- golint -set_exit_status ./...
- go build .
- go test -v ./...
- ./git-validation -run DCO,short-subject,dangling-whitespace -v