From 184e8d01ee6530515f11f5710bad75f9a770cc17 Mon Sep 17 00:00:00 2001 From: Jayson Smith Date: Thu, 6 Feb 2020 19:29:56 -0700 Subject: [PATCH] Change env setup --- .circleci/config.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index bc4229f..2f811e8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -14,10 +14,11 @@ executors: commands: env: steps: - - run: export GOROOT=/usr/local/go - - run: export GOPATH=$HOME/go - - run: export GO111MODULE=on - - run: export PATH=$GOPATH/bin:$GOROOT/bin:$PATH + - run: | + export GOROOT=/usr/local/go + export GOPATH=$HOME/go + export GO111MODULE=on + export PATH=$GOPATH/bin:$GOROOT/bin:$PATH vet: steps: - run: go vet github.com/cucumber/godog