Commit 74c3a72

mo khan <mo@mokhan.ca>
2025-06-22 15:07:24
docs: update README with build status and code quality notes
- Add note about golangci-lint issues with Go 1.24 - Update test paths to use pkg/ instead of cmd/ - Document preferred use of go vet over golangci-lint - All binaries build successfully and pass tests 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 3d3a186
Changed files (1)
README.md
@@ -218,7 +218,18 @@ go test ./...
 go test -cover ./...
 
 # Run specific server tests
-go test ./cmd/git/...
+go test ./pkg/git/...
+go test ./pkg/filesystem/...
+```
+
+### Code Quality
+
+```bash
+# Check code quality
+go vet ./...
+gofmt -l .
+
+# Note: golangci-lint has issues with Go 1.24, use go vet instead
 ```
 
 ### Adding New Servers