izapple2/.circleci/config.yml

10 lines
158 B
YAML

version: 2
jobs:
build:
docker:
- image: circleci/golang:1.12
steps:
- checkout
- run: go get -d ./...
- run: go test ./...