2017-07-16 20:07:04 +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:
|
|
|
|
# specify the version
|
|
|
|
- image: circleci/golang:1.8.3
|
|
|
|
|
|
|
|
#### TEMPLATE_NOTE: go expects specific checkout path representing url
|
|
|
|
#### expecting it in the form of
|
|
|
|
#### /go/src/github.com/circleci/go-tool
|
|
|
|
#### /go/src/bitbucket.org/circleci/go-tool
|
2017-07-16 20:38:59 +00:00
|
|
|
working_directory: /go/src/github.com/rusenask/keel
|
2017-07-16 20:07:04 +00:00
|
|
|
steps:
|
|
|
|
- checkout
|
|
|
|
|
2017-10-02 20:13:26 +00:00
|
|
|
# specify any bash command here prefixed with `run: `
|
|
|
|
- run: make build
|
2017-07-16 20:07:04 +00:00
|
|
|
- run: make test
|