Select the types of activity you want to include in your feed.
fix: set CGO_ENABLED=0 for tests, remove unused CGO driver
The test target now matches the build target by setting CGO_ENABLED=0. Removed gorm.io/driver/sqlite (CGO-based) from go.mod since all code now uses glebarez/sqlite (pure Go).
···323233333434test: ## Run unit tests
3535- go test -v ./...
3535+ CGO_ENABLED=0 go test -v ./...
36363737test-mysql: ## Run MySQL-specific tests (requires MySQL)
3838 go test -v -tags mysql ./internal/data/