mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 07:44:25 +00:00
fdf750e4d4
* Update blevesearch v0.8.1 -> v1.0.7 * make vendor Co-authored-by: zeripath <art27@cantab.net>
17 lines
407 B
YAML
Vendored
17 lines
407 B
YAML
Vendored
language: go
|
|
os:
|
|
- linux
|
|
- osx
|
|
- windows
|
|
go:
|
|
- 1.11.4
|
|
env:
|
|
global:
|
|
- GO111MODULE=on
|
|
install:
|
|
- go mod download
|
|
- go get github.com/mattn/goveralls
|
|
script:
|
|
- go test -v -covermode=count -coverprofile=coverage.out -bench . -cpu 1,4
|
|
- '[ "${TRAVIS_PULL_REQUEST}" = "false" ] && $HOME/gopath/bin/goveralls -coverprofile=coverage.out -service=travis-ci -repotoken $COVERALLS_TOKEN || true'
|