mirror of
https://github.com/go-gitea/gitea
synced 2024-11-02 08:14:25 +00:00
1426126690
Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: techknowlogick <techknowlogick@gitea.io>
10 lines
241 B
YAML
Vendored
10 lines
241 B
YAML
Vendored
language: go
|
|
install:
|
|
- go get -t
|
|
- go get golang.org/x/tools/cmd/cover
|
|
- go get github.com/mattn/goveralls
|
|
script:
|
|
- go test -race -v ./...
|
|
after_script:
|
|
- $HOME/gopath/bin/goveralls -service=travis-ci -repotoken $COVERALLS_TOKEN
|