mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 04:14:39 +03:00
14 lines
310 B
YAML
14 lines
310 B
YAML
language: go
|
|
go:
|
|
- 1.x
|
|
- tip
|
|
install:
|
|
- 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 |