mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-12-11 14:53:49 +00:00
22 lines
336 B
YAML
22 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 ./...
|