You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.PHONY: all build test test-unit test-integration lint clean install help setup-credentials clean-environment conformance-test conformance-test-crud conformance-test-discovery
25
+
.PHONY: all build test test-unit test-integration lint verify-schema clean install help setup-credentials clean-environment conformance-test conformance-test-crud conformance-test-discovery
26
26
27
27
all: build
28
28
@@ -47,6 +47,11 @@ test-integration:
47
47
lint:
48
48
golangci-lint run
49
49
50
+
## verify-schema: Validate PKL schema files
51
+
## Checks that schema files are well-formed and follow formae conventions.
52
+
verify-schema:
53
+
$(GO) run github.com/platform-engineering-labs/formae/pkg/plugin/testutil/cmd/verify-schema --namespace $(PLUGIN_NAMESPACE) ./schema/pkl
0 commit comments