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

Commit

Permalink
CI builds for multiple Go versions
Browse files Browse the repository at this point in the history
  • Loading branch information
florisvdg committed Mar 8, 2019
1 parent 74aeab6 commit 45bae5f
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,21 @@
version: 2.1
version: 2
jobs:
build:
build_golang_1.11:
docker:
- image: circleci/golang:1.11
steps:
- checkout
- run: make build
build_golang_1.12:
docker:
- image: circleci/golang:1.12
steps:
- checkout
- run: make build

workflows:
version: 2
build:
jobs:
- build_golang_1.11
- build_golang_1.12

0 comments on commit 45bae5f

Please sign in to comment.