From 15bb7b52c88dc27de85d309ffc8977a0f4e6350b Mon Sep 17 00:00:00 2001 From: auyer Date: Thu, 18 Oct 2018 11:56:04 -0300 Subject: [PATCH] multi version ci tests --- .circleci/config.yml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index c8a1096..ab57307 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -5,7 +5,23 @@ version: 2 jobs: build: docker: - - image: circleci/golang:1.11 + - image: circleci/golang:latest + working_directory: /go/src/github.com/auyer/steganography + steps: + - checkout + - run: go get -v -t -d github.com/auyer/steganography + - run: go test -v ./... + test110: + docker: + - image: circleci/golang:1.10 + working_directory: /go/src/github.com/auyer/steganography + steps: + - checkout + - run: go get -v -t -d github.com/auyer/steganography + - run: go test -v ./... + test19: + docker: + - image: circleci/golang:1.9 working_directory: /go/src/github.com/auyer/steganography steps: - checkout