mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-01 08:47:40 -04:00
17 lines
354 B
YAML
17 lines
354 B
YAML
|
language: go
|
||
|
|
||
|
go:
|
||
|
- 1.4
|
||
|
|
||
|
script:
|
||
|
- go get golang.org/x/tools/cmd/vet
|
||
|
- go get golang.org/x/tools/cmd/cover
|
||
|
- go get github.com/mattn/goveralls
|
||
|
- go test -v -covermode=count -coverprofile=profile.out
|
||
|
- go vet
|
||
|
- goveralls -service drone.io -coverprofile=profile.out -repotoken $COVERALLS
|
||
|
|
||
|
notifications:
|
||
|
email:
|
||
|
- marty.schoch@gmail.com
|