izapple2/.circleci/config.yml

10 lines
158 B
YAML
Raw Normal View History

2019-06-10 22:04:23 +00:00
version: 2
jobs:
build:
docker:
2019-12-22 15:55:40 +00:00
- image: circleci/golang:1.12
2019-06-10 22:04:23 +00:00
steps:
- checkout
- run: go get -d ./...
2019-12-22 15:55:40 +00:00
- run: go test ./...