mirror of
https://github.com/go-gitea/gitea
synced 2024-10-31 23:34:25 +00:00
28216bde46
* Super expansion * Explain which features are in 1.11 vs 1.12 * Move imports Signed-off-by: jolheiser <john.olheiser@gmail.com>
8 lines
355 B
YAML
Vendored
8 lines
355 B
YAML
Vendored
language: go
|
|
install:
|
|
- go get golang.org/x/tools/cmd/cover
|
|
- go get github.com/mattn/goveralls
|
|
script:
|
|
- go test -v -covermode=count -coverprofile=coverage.out
|
|
- 'if [ "$TRAVIS_PULL_REQUEST" = "false" ] && [ ! -z "$COVERALLS_TOKEN" ]; then $HOME/gopath/bin/goveralls -coverprofile=coverage.out -service=travis-ci -repotoken $COVERALLS_TOKEN; fi'
|