mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
17 lines
241 B
YAML
17 lines
241 B
YAML
|
language: go
|
||
|
|
||
|
go:
|
||
|
- 1.7
|
||
|
- 1.8
|
||
|
|
||
|
script:
|
||
|
# build test for supported platforms
|
||
|
- GOOS=linux go build
|
||
|
- GOOS=darwin go build
|
||
|
- GOOS=freebsd go build
|
||
|
- GOARCH=386 go build
|
||
|
|
||
|
# run tests on a standard platform
|
||
|
- go test -v ./...
|
||
|
|