Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ GO_VERSION = 1.24.0
all: test


# Run tests
.PHONY: test
# Run unit tests
.PHONY: test-unit
test:
@echo "Running tests..."
go test ./...
Expand All @@ -22,6 +22,10 @@ test-coverage:
go test ./... -coverprofile=coverage.out
go tool cover -html=coverage.out -o coverage.html

# Run integration tests
.PHONY: test-integration
test-integration:
@echo "Integration tests not implemented yet"

# Format code
.PHONY: fmt
Expand All @@ -48,8 +52,9 @@ help:
@echo "Available targets:"
@echo ""
@echo "Build & Test:"
@echo " test - Run tests"
@echo " test-coverage - Run tests with coverage report"
@echo " test-unit - Run unit tests"
@echo " test-coverage - Run tests with coverage report"
@echo " test-integration - Run integration tests (noop)"
@echo ""
@echo "Code Quality:"
@echo " fmt - Format code"
Expand Down