keel/.circleci/config.yml

21 lines
626 B
YAML
Raw Normal View History

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
2018-06-17 21:57:08 +00:00
- image: circleci/golang:1.10.3
2017-07-16 20:07:04 +00:00
#### 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-11-01 18:25:28 +00:00
working_directory: /go/src/github.com/keel-hq/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