mirror of
https://github.com/shazow/ssh-chat.git
synced 2025-04-04 19:30:07 +03:00
19 lines
248 B
YAML
19 lines
248 B
YAML
notifications:
|
|
email: false
|
|
|
|
language: go
|
|
|
|
go:
|
|
- 1.x
|
|
|
|
env:
|
|
- CGO_ENABLED=0 GO111MODULE=on
|
|
|
|
install:
|
|
- go get github.com/gordonklaus/ineffassign
|
|
|
|
script:
|
|
- diff -u <(echo -n) <(gofmt -d .)
|
|
- ineffassign .
|
|
- go test -vet "all" -v ./...
|