Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 668 Bytes

File metadata and controls

38 lines (26 loc) · 668 Bytes

Contributing to yoloai

Building

make build

Running Tests

Unit tests:

make test

Integration tests (requires Docker):

make integration

Before Submitting a PR

Run the full check suite locally:

make check

This runs the same checks as CI: formatting, linting, go mod tidy verification, and tests. If make check passes locally, CI will pass too.

Code Style

  • Go code is formatted with gofmt
  • Linting via golangci-lint (see .golangci.yml for config)
  • See docs/dev/CODING-STANDARD.md for project conventions

Commit Style

One commit per logical change. Keep commits focused and self-contained.