diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..d44e5c7 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,12 @@ +# Golang CircleCI 2.0 configuration file +# +# Check https://circleci.com/docs/2.0/language-go/ for more details +version: 2 +jobs: + build: + docker: + - image: circleci/golang:1.11 + working_directory: ~/{{ORG_NAME}}/{{REPO_NAME}} + steps: + - checkout + - run: go test -v ./... \ No newline at end of file