All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m25s
18 lines
238 B
Makefile
18 lines
238 B
Makefile
.PHONY: help run test fmt
|
|
|
|
help:
|
|
@echo "Targets:"
|
|
@echo " run - run API"
|
|
@echo " test - run tests"
|
|
@echo " fmt - format Go code"
|
|
|
|
run:
|
|
go run ./cmd/api
|
|
|
|
test:
|
|
go test ./...
|
|
|
|
fmt:
|
|
go fmt ./...
|
|
|