2014-02-07 16:52:26 +02:00
|
|
|
language: go
|
2016-01-21 21:09:44 +02:00
|
|
|
|
2018-07-12 14:57:57 +02:00
|
|
|
go_import_path: gopkg.in/DATA-DOG/go-sqlmock.v1
|
|
|
|
|
2014-02-07 16:52:26 +02:00
|
|
|
go:
|
2017-05-30 20:09:52 +03:00
|
|
|
- 1.2.x
|
|
|
|
- 1.3.x
|
2017-05-31 10:20:00 +03:00
|
|
|
- 1.4 # has no cover tool for latest releases
|
2017-05-30 20:09:52 +03:00
|
|
|
- 1.5.x
|
|
|
|
- 1.6.x
|
|
|
|
- 1.7.x
|
|
|
|
- 1.8.x
|
2017-10-04 17:32:19 +03:00
|
|
|
- 1.9.x
|
2018-03-04 17:30:57 +02:00
|
|
|
- 1.10.x
|
2018-09-08 19:12:32 +03:00
|
|
|
- 1.11.x
|
2014-02-07 16:52:26 +02:00
|
|
|
|
2018-07-12 14:32:58 +02:00
|
|
|
sudo: false
|
|
|
|
|
2017-05-31 23:54:14 +03:00
|
|
|
script:
|
|
|
|
- go vet
|
|
|
|
- test -z "$(go fmt ./...)" # fail if not formatted properly
|
|
|
|
- go test -race -coverprofile=coverage.txt -covermode=atomic
|
2016-11-21 20:16:42 -05:00
|
|
|
|
|
|
|
after_success:
|
|
|
|
- bash <(curl -s https://codecov.io/bash)
|