mirror of
https://github.com/shazow/ssh-chat.git
synced 2025-04-12 15:17:16 +03:00
26 lines
369 B
YAML
26 lines
369 B
YAML
notifications:
|
|
email: false
|
|
|
|
language: go
|
|
|
|
go:
|
|
- 1.6.2
|
|
- tip
|
|
|
|
env:
|
|
- CGO_ENABLED=0
|
|
|
|
install:
|
|
- go get -t ./...
|
|
- go get github.com/golang/lint/golint
|
|
- go get github.com/gordonklaus/ineffassign
|
|
|
|
script:
|
|
- diff <(echo -n) <(gofmt -s -d .)
|
|
- ineffassign .
|
|
- go vet ./...
|
|
- go test $(go list ./... | grep -v /vendor/)
|
|
|
|
after_script:
|
|
- golint ./...
|