Files
2026-06-15 19:02:39 +02:00

28 lines
654 B
Makefile

BASE_IMAGE = golang:1.26-alpine3.24
GOLANGCI_LINT_IMAGE = golangci/golangci-lint:v2.12.2
NODE_IMAGE = node:24-alpine3.24
.PHONY: $(shell ls)
help:
@echo "usage: make [action]"
@echo ""
@echo "available actions:"
@echo ""
@echo " format format code"
@echo " test run tests"
@echo " test-32 run tests on a 32-bit system"
@echo " test-e2e run end-to-end tests"
@echo " lint run linters"
@echo " binaries build binaries for all supported platforms"
@echo " dockerhub build and push images to Docker Hub"
@echo ""
blank :=
define NL
$(blank)
endef
include scripts/*.mk