1sudo: false
2
3language: go
4
5# Whenever the Go version is updated here, .circleci/config.yml and .promu.yml
6# should also be updated.
7go:
8- 1.11.x
9
10go_import_path: github.com/prometheus/prometheus
11
12script:
13- make check_license style unused test staticcheck check_assets
14- git diff --exit-code
15