diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..8664cec --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,13 @@ +# 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: /go/src/github.com/ianlopshire/go-fixedwidth + steps: + - checkout + - run: go get -v -t -d ./... + - run: go test -v ./... \ No newline at end of file