mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
21 lines
336 B
YAML
21 lines
336 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.11.x
|
|
- 1.12.x
|
|
- 1.13.x
|
|
- 1.14.x
|
|
- tip
|
|
|
|
before_install:
|
|
- go get -u github.com/valyala/quicktemplate/qtc
|
|
- go generate
|
|
|
|
script:
|
|
# build test for supported platforms
|
|
- GOOS=linux go build
|
|
- GOOS=darwin go build
|
|
- GOOS=freebsd go build
|
|
|
|
# run tests on a standard platform
|
|
- go test -v ./...
|