23 lines
568 B
YAML
23 lines
568 B
YAML
skip_lfs: true
|
|
|
|
pre-commit:
|
|
commands:
|
|
format:
|
|
run: dart format --output=none --set-exit-if-changed .
|
|
analyze:
|
|
run: dart analyze
|
|
# test:
|
|
# run: dart test
|
|
|
|
pre-push:
|
|
commands:
|
|
require-latest-main:
|
|
run: uv run scripts/check_branch_up_to_date.py
|
|
|
|
post-checkout:
|
|
commands:
|
|
private-skills-sync:
|
|
run: uvx --from git+https://github.com/existedinnettw/inkr-harness-tools.git inkr-skill-sync .local .agents --recursive || true
|
|
pub-get-on-pubspec-change:
|
|
run: dart tool/pub_get_on_pubspec_change.dart {1} {2} {3}
|