14 lines
320 B
YAML
14 lines
320 B
YAML
language: go
|
|
go:
|
|
- 1.x
|
|
install:
|
|
- ./script/bootstrap
|
|
script:
|
|
- go build ./...
|
|
- go test -bench . ./...
|
|
- ./script/coverage
|
|
- ./script/lint
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash) -F unittests -f unittests.coverprofile
|
|
- bash <(curl -s https://codecov.io/bash) -F integration -f integration.coverprofile
|