## Summary
Fix integration tests that were failing in CI due to deprecated build tag syntax.
## Changes
- Updated `// +build integration` to `//go:build integration` in nats_eventbus_integration_test.go
- The old syntax (deprecated in Go 1.17) was not recognized by the build system
- This was preventing integration tests from running in CI/CD pipelines
## Testing
- Integration tests now run correctly with `go test -tags=integration ./...`
- All existing tests pass with the updated build tag
Closes #138
Replace deprecated '// +build integration' with modern '//go:build integration' syntax.
The old syntax was not recognized by Go 1.17+ build system, preventing integration
tests from being executed in CI/CD pipelines.
Closes#138
Co-Authored-By: Claude Code <noreply@anthropic.com>
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Summary
Fix integration tests that were failing in CI due to deprecated build tag syntax.
Changes
// +build integrationto//go:build integrationin nats_eventbus_integration_test.goTesting
go test -tags=integration ./...Closes #138
Code Review: Approved ✓
Implementation looks solid. No blocking issues found.