mirror of
https://github.com/make-42/xyosc
synced 2025-01-18 18:57:10 +01:00
21 lines
316 B
YAML
21 lines
316 B
YAML
language: go
|
|
|
|
|
|
go:
|
|
- tip
|
|
- 1.15.x
|
|
- 1.16.x
|
|
|
|
before_script:
|
|
- go get -v github.com/smallnest/ringbuffer
|
|
- go get github.com/mattn/goveralls
|
|
|
|
script:
|
|
- go test -v ./...
|
|
- goveralls -service=travis-ci
|
|
|
|
notifications:
|
|
email:
|
|
recipients: smallnest@gmail.com
|
|
on_success: change
|
|
on_failure: always |