@@ -109,7 +109,7 @@ make run_local
109109
110110``` bash
111111# Run all tests
112- make unit_test
112+ make test
113113
114114# Run with coverage
115115go test -v -cover ./...
@@ -194,25 +194,28 @@ curl http://localhost:6333/collections
194194go mod download
195195
196196# Run tests
197- make unit_test
197+ make test
198198
199199# Run linting
200- make lint_local
200+ make lint
201201
202202# Build locally
203- make build_amd
203+ make build_amd64
204+
205+ # Run locally
206+ make run
204207```
205208
206209### Available Make Targets
207210
208211``` bash
209212make help # Show all available commands
210- make build_amd # Build for AMD64
211- make build_arm # Build for ARM64
212- make run_local # Run the service locally
213- make unit_test # Run all unit tests
214- make lint_local # Run linting
215- make lint_local_fix # Run linting with auto-fix
213+ make build_amd64 # Build for AMD64
214+ make build_arm64 # Build for ARM64
215+ make run # Run the service locally
216+ make test # Run all unit tests
217+ make lint # Run linting
218+ make lint-fix # Run linting with auto-fix
216219make clean_testcache # Clean Go test caches
217220```
218221
@@ -265,7 +268,7 @@ cat /path/to/top-purls.json | jq .
2652681 . Fork the repository
2662692 . Create a feature branch (` git checkout -b feature/amazing-feature ` )
2672703 . Make your changes
268- 4 . Run tests (` make unit_test ` )
271+ 4 . Run tests (` make test ` )
2692725 . Run linting (` make lint_local ` )
2702736 . Commit your changes (` git commit -m 'Add amazing feature' ` )
2712747 . Push to the branch (` git push origin feature/amazing-feature ` )
0 commit comments