Skip to content

Commit baafd7b

Browse files
test: add circle CI jobs for Go 1.11 and 1.13 (#178)
1 parent 4c71c0e commit baafd7b

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.circleci/config.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33
# Check https://circleci.com/docs/2.0/language-go/ for more details
44
version: 2
55
jobs:
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
@@ -12,6 +21,15 @@ jobs:
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

0 commit comments

Comments
 (0)