mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-10 07:34:04 -08:00
fb32ef6000
* *: support Go modules Signed-off-by: Simon Pasquier <spasquie@redhat.com> * Update go.mod and Makefile.common Signed-off-by: Simon Pasquier <spasquie@redhat.com>
18 lines
341 B
YAML
18 lines
341 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.10.x
|
|
- 1.11.x
|
|
|
|
go_import_path: github.com/prometheus/tsdb
|
|
|
|
install:
|
|
- go get -v -t ./...
|
|
|
|
script:
|
|
# `staticcheck` target is omitted due to linting errors
|
|
- make check_license style unused test
|