feature/epic0-foundation #1

Merged
master merged 20 commits from feature/epic0-foundation into main 2025-11-05 13:44:59 +01:00
2 changed files with 4 additions and 2 deletions
Showing only changes of commit a1fc6e69a7 - Show all commits

View File

@@ -34,6 +34,8 @@ jobs:
run: go mod verify run: go mod verify
- name: Run tests - name: Run tests
env:
CGO_ENABLED: 1
run: go test -v -race -coverprofile=coverage.out ./... run: go test -v -race -coverprofile=coverage.out ./...
- name: Upload coverage - name: Upload coverage

View File

@@ -49,11 +49,11 @@ help:
# Development commands # Development commands
test: test:
@echo "Running tests..." @echo "Running tests..."
$(GO) test -v -race ./... CGO_ENABLED=1 $(GO) test -v -race ./...
test-coverage: test-coverage:
@echo "Running tests with coverage..." @echo "Running tests with coverage..."
$(GO) test -v -race -coverprofile=coverage.out ./... CGO_ENABLED=1 $(GO) test -v -race -coverprofile=coverage.out ./...
$(GO) tool cover -html=coverage.out -o coverage.html $(GO) tool cover -html=coverage.out -o coverage.html
@echo "Coverage report generated: coverage.html" @echo "Coverage report generated: coverage.html"