chore: bootstrap data plane engineering
Verify Data Plane / gateway (push) Successful in 1m57s

This commit is contained in:
sechmachine
2026-07-29 03:34:05 +07:00
parent 4c60c8fb7d
commit 6c630a1398
16 changed files with 1138 additions and 1 deletions
+24
View File
@@ -0,0 +1,24 @@
.PHONY: format-check module-verify build vet test openspec verify
GO ?= go
OPENSPEC ?= openspec
format-check:
@test -z "$$(gofmt -l $$(find gateway -type f -name '*.go' -print))"
module-verify:
$(GO) mod verify
build:
$(GO) build ./...
vet:
$(GO) vet ./...
test:
$(GO) test ./... -count=1
openspec:
$(OPENSPEC) validate --all --strict --no-interactive
verify: format-check module-verify build vet test openspec