mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-10 07:34:04 -08:00
dbd765a0e3
make use of the Makefile.common Signed-off-by: Martin Chodur <m.chodur@seznam.cz>
19 lines
400 B
YAML
19 lines
400 B
YAML
# sudo is enabled because it provides more memory which was needed to run go test -race
|
|
sudo: required
|
|
dist: trusty
|
|
language: go
|
|
|
|
go:
|
|
- 1.9.x
|
|
- 1.10.x
|
|
|
|
go_import_path: github.com/prometheus/tsdb
|
|
|
|
install:
|
|
- go get -v -t ./...
|
|
|
|
script:
|
|
# `check_license` target is omitted due to some missing license headers
|
|
# `staticcheck` target is omitted due to linting errors
|
|
- make style unused test
|