mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
20 lines
300 B
YAML
20 lines
300 B
YAML
language: go
|
|
|
|
notifications:
|
|
email: false
|
|
|
|
go:
|
|
- "1.10.3"
|
|
- master
|
|
|
|
before_install:
|
|
- curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
|
|
- go get -u github.com/golang/lint/golint
|
|
|
|
install:
|
|
- dep ensure
|
|
|
|
script:
|
|
- golint -set_exit_status
|
|
- go test -v
|