Skip to content

Commit

Permalink
go mod tidy is downloading causing CI to fail
Browse files Browse the repository at this point in the history
  • Loading branch information
PChambino committed Sep 16, 2022
1 parent 8b67319 commit 791a19c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ jobs:
- go/mod-download-cached
- run:
name: go mod tidy
command: go mod tidy -v 2>&1 | [ $(wc -c) -eq 0 ]
command: |
go mod tidy -v
git diff --exit-code go.mod go.sum
- go/test:
failfast: true
packages: '-v ./...'
Expand Down

0 comments on commit 791a19c

Please sign in to comment.