Skip to content

Commit

Permalink
multi version ci tests
Browse files Browse the repository at this point in the history
  • Loading branch information
auyer committed Oct 18, 2018
1 parent e4ec5a9 commit 15bb7b5
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 15bb7b5

Please sign in to comment.