diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8f63292..61021cf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,8 +58,8 @@ jobs: fi - name: go vet run: go vet ./... - - name: consumer boundary guard - run: bash ./scripts/check-consumer-boundaries.sh + - name: ecosystem boundary guard + run: bash ./scripts/check-ecosystem-boundaries.sh # ------------------------------------------------------------------------- # Lint — golangci-lint covers most static checks. diff --git a/Makefile b/Makefile index 8df768b..2fc565c 100644 --- a/Makefile +++ b/Makefile @@ -75,7 +75,7 @@ vet: ## Run go vet. go vet ./... boundary-guard: ## Fail if the SDK imports support engines or Hawk private packages. - bash ./scripts/check-consumer-boundaries.sh + bash ./scripts/check-ecosystem-boundaries.sh lint: ## Run golangci-lint. @command -v $(GOLANGCI) >/dev/null 2>&1 || (echo "install: go install github.com/golangci/golangci-lint/v2/cmd/golangci-lint@latest" && exit 1) diff --git a/scripts/check-consumer-boundaries.sh b/scripts/check-ecosystem-boundaries.sh similarity index 100% rename from scripts/check-consumer-boundaries.sh rename to scripts/check-ecosystem-boundaries.sh