From 5c2a41c30ef4fb1688346f362a18788ff296069e Mon Sep 17 00:00:00 2001 From: jmacd Date: Fri, 8 Nov 2019 09:58:00 -0800 Subject: [PATCH] Add circle config --- .circleci/config.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..1e65ea3 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,21 @@ +version: 2 + +jobs: + test: + working_directory: ~/go/src/github.com/lightstep/varopt + docker: + - image: circleci/golang:1.13 + steps: + - run: + name: "configure environment" + command: | + echo 'export GOPATH="$HOME/go"' >> $BASH_ENV + source $BASH_ENV + - checkout + - run: go test + +workflows: + version: 2 + test: + jobs: + - test