1
0
mirror of https://github.com/DATA-DOG/go-sqlmock.git synced 2025-02-19 19:00:11 +02:00
go-sqlmock/.travis.yml

27 lines
445 B
YAML
Raw Normal View History

2014-02-07 16:52:26 +02:00
language: go
2016-01-21 21:09:44 +02:00
2019-02-13 09:34:40 +02:00
go_import_path: github.com/DATA-DOG/go-sqlmock
2014-02-07 16:52:26 +02:00
go:
2017-05-30 20:09:52 +03:00
- 1.2.x
- 1.3.x
- 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
- 1.12.x
2019-11-04 19:28:50 +00:00
- 1.13.x
2020-04-29 16:56:15 -04:00
- 1.14.x
2018-07-12 14:32:58 +02:00
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)