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
fix(ci): resolve staticcheck and race detector failures
- Replace nil context with context.TODO() in reader_test.go and tree_test.go
- Add //lint:ignore U1000 comments for documented but unused items in children_coverage_test.go
- Add CGO_ENABLED=1 to test:race task in Taskfile.yml (race detector requires CGO)
These fixes resolve:
- SA1012: do not pass a nil Context
- U1000: unused var/func (documented for future use)
- Race detector failure: -race requires CGO
0 commit comments