Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
# Check https://circleci.com/docs/2.0/language-go/ for more details
version: 2
jobs:
test-go-1-13:
docker:
- image: circleci/golang:1.13
steps:
- checkout
- run: go mod download
- run:
name: Run unit tests
command: go test -v ./...
test-go-1-12:
docker:
- image: circleci/golang:1.12
Expand All @@ -12,6 +21,15 @@ jobs:
- run:
name: Run unit tests
command: go test -v ./...
test-go-1-11:
docker:
- image: circleci/golang:1.11
steps:
- checkout
- run: go mod download
- run:
name: Run unit tests
command: go test -v ./...
test-go-1-10:
docker:
- image: circleci/golang:1.10
Expand All @@ -26,5 +44,7 @@ workflows:
version: 2
test:
jobs:
- test-go-1-13
- test-go-1-12
- test-go-1-11
- test-go-1-10