Merge pull request #16 from DusanKasan/circleci-project-setup

Circleci project setup
diff --git a/.circleci/config.yml b/.circleci/config.yml
new file mode 100644
index 0000000..e8b54c0
--- /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.14
+    working_directory: /go/src/github.com/{{ORG_NAME}}/{{REPO_NAME}}
+    steps:
+      - checkout
+      - run: go test -v ./...
\ No newline at end of file