Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Loading