Add .circleci/config.yml

This commit is contained in:
Yuhui Xu 2021-01-13 23:37:32 +08:00
parent 8d0e210572
commit ee7cc1675b

11
.circleci/config.yml Normal file
View File

@ -0,0 +1,11 @@
version: 2
jobs:
build:
docker:
- image: circleci/golang:1.15
working_directory: /go/src/github.com/{{ORG_NAME}}/{{REPO_NAME}}
steps:
- checkout
- run: go get -v -t -d ./...
- run: go test -v ./...