Add comprehensive CI sanity checks and documentation

Co-authored-by: Doezer <11655673+Doezer@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-11-13 22:57:32 +01:00
committed by Doezer
co-authored by Doezer
parent 95a15a07cc
commit aeeacfc84b
4 changed files with 156 additions and 1 deletions
+17
View File
@@ -77,6 +77,23 @@ flutter run
## Development
### Code Quality
Before submitting changes, ensure your code passes all quality checks:
```bash
# Format code
dart format .
# Analyze code for issues
flutter analyze
# Run tests (if available)
flutter test
```
These checks are automatically run in CI for all pull requests.
### Code Generation
The project uses code generation for JSON serialization. After modifying model classes, run: