feed-to-muc/vendor/github.com/mattn/go-runewidth/.travis.yml

17 lines
224 B
YAML
Raw Normal View History

2020-03-28 12:22:07 +01:00
language: go
2020-10-24 12:40:39 +02:00
sudo: false
2020-03-28 12:22:07 +01:00
go:
2020-10-24 12:40:39 +02:00
- 1.13.x
2020-03-28 12:22:07 +01:00
- tip
2020-10-24 12:40:39 +02:00
2020-03-28 12:22:07 +01:00
before_install:
2020-10-24 12:40:39 +02:00
- go get -t -v ./...
2020-03-28 12:22:07 +01:00
script:
2020-10-24 12:40:39 +02:00
- go generate
- git diff --cached --exit-code
- ./go.test.sh
after_success:
- bash <(curl -s https://codecov.io/bash)