mirror of
https://github.com/vbatts/git-validation.git
synced 2024-11-22 16:15:40 +00:00
c36adca155
Remove unsupported/old Golang versions from Travis run. Signed-off-by: Phil Estes <estesp@vnet.linux.ibm.com>
32 lines
395 B
YAML
32 lines
395 B
YAML
language: go
|
|
|
|
go_import_path: github.com/vbatts/git-validation
|
|
|
|
go:
|
|
- "tip"
|
|
- "1.13.x"
|
|
|
|
env:
|
|
|
|
matrix:
|
|
|
|
sudo: false
|
|
|
|
install: true
|
|
|
|
notifications:
|
|
email:
|
|
on_success: change
|
|
on_failure: always
|
|
|
|
before_script:
|
|
- env
|
|
|
|
before_install:
|
|
- go get ./...
|
|
|
|
script:
|
|
- go vet -x ./...
|
|
- go build .
|
|
- go test -v ./...
|
|
- ./git-validation -run DCO,short-subject,dangling-whitespace -v
|