Files
kong/.circleci/config.yml
T
2018-05-19 20:30:04 +10:00

12 lines
226 B
YAML

version: 2
jobs:
build:
docker:
- image: circleci/golang:1.10
working_directory: /go/src/github.com/alecthomas/kong
steps:
- checkout
- run: go get -v -t -d ./...
- run: go test -v ./...