Skip to content

Commit

Permalink
Fix CircleCI bug
Browse files Browse the repository at this point in the history
CircleCI failed with the following error because `go mod vendor` wasn't
run:

    cannot find package "."

Updating the configuration seems to have fixed the pipeline.
  • Loading branch information
kohrVid committed May 15, 2022
1 parent b6ffaac commit dab0400
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
name: Install Dependencies
command: |
export GO111MODULE=on
go mod download
go mod vendor
go install github.com/axw/gocov/gocov@v1.0.0
- save_cache:
key: go-mod-v4-{{ checksum "go.sum" }}
Expand Down

0 comments on commit dab0400

Please sign in to comment.