You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
275 B
18 lines
275 B
4 years ago
|
sudo: false
|
||
|
|
||
|
language: go
|
||
|
|
||
|
before_script:
|
||
|
- go get -u golang.org/x/lint/golint
|
||
|
|
||
|
go:
|
||
|
- 1.10.x
|
||
|
- master
|
||
|
|
||
|
script:
|
||
|
- test -z "$(gofmt -s -l . | tee /dev/stderr)"
|
||
|
- test -z "$(golint ./... | tee /dev/stderr)"
|
||
|
- go vet ./...
|
||
|
- go build -v ./...
|
||
|
- go test -v ./...
|