mobile bluesky app made with flutter
lazurite.stormlightlabs.org/
mobile
bluesky
flutter
1# Format all Dart files
2format:
3 dart format lib test
4
5# Run static analysis
6lint:
7 flutter analyze
8
9# Test with failures only to focus on failures and hanging tests
10test-quiet *paths='':
11 flutter test {{ paths }} --reporter=failures-only --fail-fast --timeout=120s
12
13# Run all tests
14test *paths='':
15 flutter test {{ paths }} --fail-fast --timeout=120s
16
17# Run code gen
18gen:
19 dart run build_runner build --delete-conflicting-outputs
20
21# Run format, lint, and test
22check: format lint test