php-fpm-exporter/.circleci/config.yml

16 lines
481 B
YAML
Raw Normal View History

2018-02-18 00:55:06 +00:00
# Golang CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-go/ for more details
version: 2
jobs:
build:
docker:
- image: circleci/golang:1.9
working_directory: /go/src/github.com/hipages/php-fpm_exporter
steps:
- checkout
2018-02-18 10:13:14 +00:00
- run: curl -L -s https://github.com/golang/dep/releases/download/v0.4.1/dep-linux-amd64 -o /go/bin/dep && chmod +x /go/bin/dep
2018-02-18 09:36:05 +00:00
- run: dep ensure -vendor-only
2018-02-18 00:55:06 +00:00
- run: go test -v ./...