geziyor/.travis.yml
2019-09-13 14:34:29 +03:00

20 lines
266 B
YAML

language: go
go:
- 1.10.x
- 1.11.x
- 1.12.x
- 1.13.x
- tip
env:
- GO111MODULE=on
before_install:
- go get -t -v ./...
script:
- go test -race -coverprofile=coverage.txt -covermode=atomic
after_success:
- bash <(curl -s https://codecov.io/bash)