Add .circleci/config.yml (#5)

This commit is contained in:
Raúl Kripalani 2020-12-09 16:21:16 +00:00 committed by GitHub
parent ffbfd5e37a
commit da833d93a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 0 deletions

13
.circleci/config.yml Normal file
View File

@ -0,0 +1,13 @@
# Golang CircleCI 2.0 configuration file
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 ./...