12 lines
226 B
YAML
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 ./...
|