Skip to content
This repository was archived by the owner on Mar 8, 2023. It is now read-only.

Commit 45bae5f

Browse files
committed
CI builds for multiple Go versions
1 parent 74aeab6 commit 45bae5f

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

.circleci/config.yml

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,21 @@
1-
version: 2.1
1+
version: 2
22
jobs:
3-
build:
3+
build_golang_1.11:
4+
docker:
5+
- image: circleci/golang:1.11
6+
steps:
7+
- checkout
8+
- run: make build
9+
build_golang_1.12:
410
docker:
511
- image: circleci/golang:1.12
612
steps:
713
- checkout
814
- run: make build
15+
16+
workflows:
17+
version: 2
18+
build:
19+
jobs:
20+
- build_golang_1.11
21+
- build_golang_1.12

0 commit comments

Comments
 (0)