mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
10 lines
241 B
YAML
10 lines
241 B
YAML
|
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
|