termdash/.travis.yml

18 lines
461 B
YAML
Raw Normal View History

language: go
go:
- 1.10.x
- 1.11.x
- 1.12.x
- stable
script:
- go get -t ./...
2019-02-18 15:05:59 +08:00
- go get -u golang.org/x/lint/golint
- go test ./...
- go test -race ./...
- go vet ./...
- diff -u <(echo -n) <(gofmt -d -s .)
- diff -u <(echo -n) <(./internal/scripts/autogen_licences.sh .)
2019-02-18 15:05:59 +08:00
- diff -u <(echo -n) <(golint ./...)
after_success:
2019-03-03 15:51:26 +08:00
- ./internal/scripts/coverage.sh