adjust dir structures
Some checks failed
docker-release / build-and-push (push) Failing after 9m59s

This commit is contained in:
2025-11-14 15:02:33 +08:00
parent 960cf59a1d
commit 83bb6623e8
10 changed files with 344 additions and 9 deletions

View File

@@ -4,10 +4,10 @@ GOCACHE ?= /tmp/go-build
.PHONY: build fmt test test-all run
build:
$(GO) build ./cmd/any-hub
$(GO) build .
fmt:
$(GO)fmt ./cmd ./internal ./tests
$(GO) fmt ./...
test:
$(GO) test ./...
@@ -16,4 +16,4 @@ test-all:
GOCACHE=$(GOCACHE) $(GO) test ./...
run:
$(GO) run ./cmd/any-hub --config ./config.toml
$(GO) run . --config ./config.toml