File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change 33# Check https://circleci.com/docs/2.0/language-go/ for more details
44version : 2
55jobs :
6+ test-go-1-13 :
7+ docker :
8+ - image : circleci/golang:1.13
9+ steps :
10+ - checkout
11+ - run : go mod download
12+ - run :
13+ name : Run unit tests
14+ command : go test -v ./...
615 test-go-1-12 :
716 docker :
817 - image : circleci/golang:1.12
1221 - run :
1322 name : Run unit tests
1423 command : go test -v ./...
24+ test-go-1-11 :
25+ docker :
26+ - image : circleci/golang:1.11
27+ steps :
28+ - checkout
29+ - run : go mod download
30+ - run :
31+ name : Run unit tests
32+ command : go test -v ./...
1533 test-go-1-10 :
1634 docker :
1735 - image : circleci/golang:1.10
@@ -26,5 +44,7 @@ workflows:
2644 version : 2
2745 test :
2846 jobs :
47+ - test-go-1-13
2948 - test-go-1-12
49+ - test-go-1-11
3050 - test-go-1-10
You can’t perform that action at this time.
0 commit comments