mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
0697164b4f
This is manual merge of the https://github.com/VictoriaMetrics/VictoriaMetrics/pull/152 Thanks to nustinov@gmail.com for the initial pull request.
19 lines
411 B
YAML
19 lines
411 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.10.x
|
|
|
|
script:
|
|
# build test for supported platforms
|
|
- GOOS=linux go build
|
|
- GOOS=darwin go build
|
|
- GOOS=freebsd go build
|
|
- GOOS=windows go build
|
|
|
|
# run tests on a standard platform
|
|
- go test -v ./... -coverprofile=coverage.txt -covermode=atomic
|
|
- go test -v ./... -race
|
|
|
|
after_success:
|
|
# Upload coverage results to codecov.io
|
|
- bash <(curl -s https://codecov.io/bash)
|