Skip to content

Commit

Permalink
Use go mod download to provision deps
Browse files Browse the repository at this point in the history
Bump go version for goreleaser job
  • Loading branch information
eversC committed Apr 6, 2019
1 parent 578265e commit f28e0a6
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
<<: *defaults

docker:
- image: circleci/golang:1.10
- image: circleci/golang:1.12

steps:
- checkout
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
name: go vet
command: |
export GO111MODULE=on
go build
go mod download
go vet ./...
go_cyclo:
Expand Down Expand Up @@ -98,7 +98,10 @@ jobs:

- run:
name: go test
command: go test ./...
command: |
export GO111MODULE=on
go mod download
go test ./...
workflows:
version: 2
Expand Down

0 comments on commit f28e0a6

Please sign in to comment.