Split Dockerfile: pre-built golangci-lint stage for faster CI #26

Merged
sneak merged 4 commits from fix/issue-22-dockerfile-split into main 2026-03-02 21:11:18 +01:00
Showing only changes of commit 3e48b46e3d - Show all commits

View File

@ -11,22 +11,30 @@ default: clean debug
commit: fmt lint commit: fmt lint
git commit -a git commit -a
# get golangci-lint with: # get gofumpt with:
# go get github.com/golangci/golangci-lint/cmd/golangci-lint@v1.31.0 # go install mvdan.cc/gofumpt@latest
# get gofumports with:
# go get mvdan.cc/gofumpt/gofumports
fmt: fmt:
gofumpt -l -w . gofumpt -l -w .
golangci-lint run --fix golangci-lint run --fix
fmt-check:
@test -z "$$(gofmt -l .)" || { echo "gofmt found unformatted files:"; gofmt -l .; exit 1; }
lint: lint:
golangci-lint run golangci-lint run
sh -c 'test -z "$$(gofmt -l .)"'
test: test:
go test ./... go test ./...
check: lint test check: fmt-check lint test
build: ./$(FN)d
hooks:
@mkdir -p .git/hooks
@printf '#!/bin/sh\nmake fmt-check lint\n' > .git/hooks/pre-commit
@chmod +x .git/hooks/pre-commit
@echo "Pre-commit hook installed."
debug: ./$(FN)d debug: ./$(FN)d
DEBUG=1 GOTRACEBACK=all ./$(FN)d DEBUG=1 GOTRACEBACK=all ./$(FN)d
@ -48,5 +56,6 @@ docker:
go build -o ../../$(FN)d $(GOFLAGS) . go build -o ../../$(FN)d $(GOFLAGS) .
tools: tools:
go get -v github.com/golangci/golangci-lint/cmd/golangci-lint@v1.31.0 go install mvdan.cc/gofumpt@latest
go get -v mvdan.cc/gofumpt/gofumports
.PHONY: default commit fmt fmt-check lint test check build hooks debug debugger run clean docker tools