feat(release): update release process to include linting and testing

This commit is contained in:
2026-09-10 22:21:40 +02:00
parent 19a2cc1fe3
commit ca226e83df
6 changed files with 28 additions and 6 deletions
+1 -1
View File
@@ -207,7 +207,7 @@ docker-test-integration: docker-up ## Start DB and run integration tests
$(GOTEST) -v ./pkg/readers/pgsql/ -count=1 || (make docker-down && exit 1)
@make docker-down
release: ## Create and push a new release tag (auto-increments patch version)
release: lint fmt-check test build ## Run lint, format check, tests, build, then create and push a new release tag
@echo "Creating new release..."
@latest_tag=$$(git describe --tags --abbrev=0 2>/dev/null || echo ""); \
if [ -z "$$latest_tag" ]; then \