Skip to content

Commit

Permalink
Use go mod download
Browse files Browse the repository at this point in the history
instead of glide as we migrated to go mod before.
In order to do so, use latest go.
  • Loading branch information
PirminTapken committed Dec 11, 2019
1 parent cbcdc9f commit 77dc1b1
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2
jobs:
build:
docker:
- image: circleci/golang:1.10
- image: circleci/golang:latest
working_directory: /go/src/github.com/libri-gmbh/kube-vault

steps:
Expand All @@ -12,9 +12,8 @@ jobs:

- run:
name: install dependencies
command: |
curl https://glide.sh/get | sh
glide install --strip-vendor
command: go mod download

- run:
name: run tests
command: go test -v ./...
Expand Down

0 comments on commit 77dc1b1

Please sign in to comment.