mirror of
https://github.com/stashapp/stash.git
synced 2026-05-05 02:52:32 +02:00
15 lines
No EOL
314 B
YAML
15 lines
No EOL
314 B
YAML
language: go
|
|
go:
|
|
- 1.x
|
|
- tip
|
|
install:
|
|
- bash .travis.sh
|
|
- go get -t ./...
|
|
- go get golang.org/x/tools/cmd/cover
|
|
- go get github.com/mattn/goveralls
|
|
matrix:
|
|
allow_failures:
|
|
- go: tip
|
|
script:
|
|
- go test -race -v -coverprofile=coverage.out
|
|
- $HOME/gopath/bin/goveralls -coverprofile=coverage.out -service=travis-ci |