docker-compose up -d
go mod tidy
go run cmd/main.go
go test ./...
Test coverage:
go test ./... -coverprofile=coverage.out
go tool cover -html=coverage.out
Check for linting errors (code style, code smells, etc.)
golangci-lint run
docker-compose up -d
go mod tidy
go run cmd/main.go
go test ./...
Test coverage:
go test ./... -coverprofile=coverage.out
go tool cover -html=coverage.out
Check for linting errors (code style, code smells, etc.)
golangci-lint run