alertmanager/.travis.yml
Simon Pasquier a4412270ef Switch to Go 1.12
It also pins errcheck to the latest stable release and simplifies how it
gets installed.

Signed-off-by: Simon Pasquier <spasquie@redhat.com>
2019-03-04 16:33:32 +01:00

22 lines
376 B
YAML

sudo: false
language: go
go_import_path: github.com/prometheus/alertmanager
services:
- docker
# Whenever the Go version is updated here, .circleci/config.yml and .promu.yml
# should also be updated.
go:
- 1.12.x
script:
# test front-end
- make clean
- cd ui/app/ && make && cd ../..
- make assets apiv2
- git diff --exit-code
# test back-end
- make
- git diff --exit-code