Skip to content
Closed
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
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# GENEALOGIX Makefile
.PHONY: help build build-cli build-website install-deps lint lint-fix test test-verbose test-race test-coverage bench mod-tidy mod-verify clean fmt check-schemas check-links release-snapshot
.PHONY: help build build-cli build-website install-deps lint lint-fix test test-verbose test-race test-coverage bench mod-tidy mod-verify tidy-check clean fmt check-schemas check-links release-snapshot

.DEFAULT_GOAL := help

Expand Down Expand Up @@ -76,6 +76,9 @@ mod-tidy: ## Tidy Go module dependencies
mod-verify: ## Verify Go module integrity
go mod verify

tidy-check: ## Verify go.mod and go.sum are tidy
go mod tidy -diff

## Specification
check-schemas: ## Validate JSON schema files
@node specification/validate-schemas.mjs
Expand Down
Loading