You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Run all tests
go test ./...
# Run tests with verbose output
go test -v ./...
# Run a single test function
go test -run TestBEIndex_Retrieve ./...
# Run tests in a specific package
go test ./roaringidx/...
# Run tests with coverage
go test -cover ./...
# Build the module
go build ./...
# Download dependencies
go mod download
# Tidy dependencies
go mod tidy
# Vet (static analysis)
go vet ./...
Code Style Guidelines
Imports
Group imports: stdlib first, blank line, then project imports
Use full import paths: github.com/echoface/be_indexer/parser