1
0
mirror of https://github.com/schollz/cowyo.git synced 2023-08-10 21:13:00 +03:00
cowyo/vendor/github.com/ugorji/go/.travis.yml

13 lines
321 B
YAML
Raw Normal View History

2017-11-04 13:45:08 +03:00
language: go
sudo: false
go:
2018-01-22 13:07:50 +03:00
- 1.7.x # go testing suite support, which we use, was introduced in go 1.7
- 1.8.x
- 1.9.x
2018-04-22 14:51:19 +03:00
- 1.10.x
2018-01-22 13:07:50 +03:00
- tip
2017-11-04 13:45:08 +03:00
script:
2018-01-22 13:07:50 +03:00
- go test -tags "alltests" -run Suite -coverprofile coverage.txt github.com/ugorji/go/codec
2017-11-04 13:45:08 +03:00
after_success:
2018-01-22 13:07:50 +03:00
- bash <(curl -s https://codecov.io/bash)