Skip to content

Commit b8a9eb0

Browse files
Merge pull request #656 from erikgb/boilerplate-verify
Add boilerplate module to project
2 parents e249911 + 634beae commit b8a9eb0

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

Makefile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,15 @@ golangci_lint_config := .golangci.yaml # For `make generate-golangci-lint-config
7272
# Modules that are used in this repo:
7373
# - tools: allows us to download crane
7474
# - generate-verify: to allow renovate to run make generate after updating the `go.mod` files in this repo.
75+
# - boilerplate: to ensure all files have license boilerplate
7576
# - go: so that make go-tidy is triggered by make generate.
7677
#
7778
# Module files must be included in number order (00,01,02) to satisfy the
7879
# dependencies between them.
7980
include modules/tools/00_mod.mk
8081
include modules/generate-verify/00_mod.mk
82+
include modules/boilerplate/00_mod.mk
83+
include modules/boilerplate/01_mod.mk
8184
include modules/go/01_mod.mk
8285
include modules/generate-verify/02_mod.mk
8386

@@ -120,10 +123,6 @@ learn-image-shas: | $(NEEDS_CRANE)
120123
@CRANE=$(CRANE) \
121124
./scripts/learn_image_shas.sh
122125

123-
.PHONY: verify-boilerplate
124-
verify-boilerplate: | $(NEEDS_BOILERSUITE)
125-
$(BOILERSUITE) .
126-
127126
# Test targets
128127

129128
.PHONY: test-e2e

0 commit comments

Comments
 (0)