Files
junk2jive-server/Makefile
rogueking d975bea218
Some checks failed
golangci-lint / lint (push) Failing after 20s
Run Go Tests / build (push) Failing after 24s
Build and Push Docker Image / Build and push image (push) Successful in 2m32s
build / Build (push) Successful in 22s
testing fixes
2025-05-06 20:56:12 -07:00

15 lines
315 B
Makefile

port ?= 8080
junk2jive:
@go build ./cmd/junk2jive
run:
@go run ./cmd/junk2jive -p $(port)
test:
@go test ./... -v
test_coverage:
@go test -cover ./...
# @go test -coverprofile=coverage.out ./...
# @go tool cover -func=coverage.out | grep total: | awk '{print "Total coverage: " $$3}'
clean:
@rm ./junk2jive