mirror of
https://github.com/vbatts/git-validation.git
synced 2024-11-22 16:15:40 +00:00
25 lines
463 B
YAML
25 lines
463 B
YAML
language: go
|
|
go:
|
|
- tip
|
|
- 1.x
|
|
- 1.8.x
|
|
- 1.7.x
|
|
- 1.6.x
|
|
|
|
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 ./...
|
|
|
|
before_script:
|
|
- env
|
|
|
|
install: true
|
|
|
|
script:
|
|
- go vet -x ./...
|
|
- golint -set_exit_status ./...
|
|
- go build .
|
|
- go test -v ./...
|
|
- ./git-validation -run DCO,short-subject,dangling-whitespace -v
|