Files
any-hub/Makefile
Rogee 83bb6623e8
Some checks failed
docker-release / build-and-push (push) Failing after 9m59s
adjust dir structures
2025-11-14 15:02:33 +08:00

20 lines
265 B
Makefile

GO ?= /home/rogee/.local/go/bin/go
GOCACHE ?= /tmp/go-build
.PHONY: build fmt test test-all run
build:
$(GO) build .
fmt:
$(GO) fmt ./...
test:
$(GO) test ./...
test-all:
GOCACHE=$(GOCACHE) $(GO) test ./...
run:
$(GO) run . --config ./config.toml