From 890e8ee00b0f468ad50ab8cd55fd862a81b1d431 Mon Sep 17 00:00:00 2001 From: Michele Date: Mon, 28 Oct 2019 14:47:29 -0700 Subject: [PATCH] Adding circleCI so branches can build --- .circleci/config.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..a5bc47a --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,12 @@ +version: 2.1 + +jobs: + build: + docker: + - image: circleci/golang:1.13.3 + steps: + - run: + name: This is needed to get CircleCI building on branches + command: | + echo 'This will be overwritten once PR 72 is merged!' + \ No newline at end of file