Browse Source

Include go.mod in gomod-check and rename to tidy-check (#21025)

Co-authored-by: techknowlogick <techknowlogick@gitea.io>
tags/v1.18.0-rc0
silverwind 1 year ago
parent
commit
b7a4b45ff8
No account linked to committer's email address
1 changed files with 4 additions and 4 deletions
  1. 4
    4
      Makefile

+ 4
- 4
Makefile View File

@@ -311,7 +311,7 @@ checks: checks-frontend checks-backend
checks-frontend: lockfile-check svg-check

.PHONY: checks-backend
checks-backend: gomod-check swagger-check swagger-validate
checks-backend: tidy-check swagger-check swagger-validate

.PHONY: lint
lint: lint-frontend lint-backend
@@ -388,9 +388,9 @@ tidy:
vendor: tidy
$(GO) mod vendor

.PHONY: gomod-check
gomod-check: tidy
@diff=$$(git diff go.sum); \
.PHONY: tidy-check
tidy-check: tidy
@diff=$$(git diff go.mod go.sum); \
if [ -n "$$diff" ]; then \
echo "Please run 'make tidy' and commit the result:"; \
echo "$${diff}"; \

Loading…
Cancel
Save