...
1language: go
2
3go_import_path: github.com/DATA-DOG/go-sqlmock
4
5go:
6 - 1.2.x
7 - 1.3.x
8 - 1.4 # has no cover tool for latest releases
9 - 1.5.x
10 - 1.6.x
11 - 1.7.x
12 - 1.8.x
13 - 1.9.x
14 - 1.10.x
15 - 1.11.x
16 - 1.12.x
17 - 1.13.x
18 - 1.14.x
19 - 1.15.x
20 - 1.16.x
21 - 1.17.x
22
23script:
24 - go vet
25 - test -z "$(go fmt ./...)" # fail if not formatted properly
26 - go test -race -coverprofile=coverage.txt -covermode=atomic
27
28after_success:
29 - bash <(curl -s https://codecov.io/bash)
View as plain text