module_path := "sourcecraft.dev/bigbes/confluence-md-utilities" # Install mdcx binary locally install: go install {{module_path}}/cmd/mdcx@latest local-install: go install ./cmd/mdcx # Build mdcx binary build: go build -o mdcx ./cmd/mdcx # Run tests test: go test ./... # Run tests with verbose output test-v: go test -v ./...