File tree 2 files changed +9
-9
lines changed
2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -91,13 +91,12 @@ Here's how to run the test suite:
91
91
92
92
## Vendoring
93
93
94
- We keep a cached copy of dependencies within the ` vendor/ ` directory,
95
- managing updates via [ Modules] ( https://golang.org/cmd/go/#hdr-Module_maintenance ) .
94
+ We manage dependencies via [ Go Modules] ( https://golang.org/cmd/go/#hdr-Module_maintenance ) , more details: [ go mod] ( https://go.dev/ref/mod ) .
96
95
97
- Pull requests should only include ` vendor/ ` updates if they are part of
96
+ Pull requests should only include ` go.mod ` , ` go.sum ` updates if they are part of
98
97
the same change, be it a bugfix or a feature addition.
99
98
100
- The ` vendor/ ` update needs to be justified as part of the PR description,
99
+ The ` go.mod ` , ` go.sum ` update needs to be justified as part of the PR description,
101
100
and must be verified by the reviewers and/or merger to always reference
102
101
an existing upstream commit.
103
102
Original file line number Diff line number Diff line change @@ -295,7 +295,7 @@ checks: checks-frontend checks-backend
295
295
checks-frontend : lockfile-check svg-check
296
296
297
297
.PHONY : checks-backend
298
- checks-backend : swagger-check swagger-validate
298
+ checks-backend : gomod-check swagger-check swagger-validate
299
299
300
300
.PHONY : lint
301
301
lint : lint-frontend lint-backend
@@ -369,11 +369,12 @@ unit-test-coverage:
369
369
vendor :
370
370
$(GO ) mod tidy && $(GO ) mod vendor
371
371
372
- .PHONY : test-vendor
373
- test-vendor : vendor
374
- @diff=$$(git diff vendor/ ) ; \
372
+ .PHONY : gomod-check
373
+ gomod-check :
374
+ @$(GO ) mod tidy
375
+ @diff=$$(git diff go.sum ) ; \
375
376
if [ -n " $$ diff" ]; then \
376
- echo " Please run 'make vendor ' and commit the result:" ; \
377
+ echo " Please run '$( GO ) mod tidy ' and commit the result:" ; \
377
378
echo " $$ {diff}" ; \
378
379
exit 1; \
379
380
fi
You can’t perform that action at this time.
0 commit comments