ce525dd622
Settings round-trip + Changed; Power state + fake-ACC AccChanged — на живой D-Bus. just test-integration (dbus-run-session). #[ignore] → just ci (unit) не требует шины. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Signed-off-by: Alexander <akotenev2003@gmail.com>
31 lines
815 B
Makefile
31 lines
815 B
Makefile
# Штурман — единые dev-команды (расширяется по планам реализации).
|
|
set shell := ["bash", "-uc"]
|
|
|
|
# список целей
|
|
default:
|
|
@just --list
|
|
|
|
# собрать весь воркспейс
|
|
build:
|
|
cargo build --workspace
|
|
|
|
# тесты (unit + integration)
|
|
test:
|
|
cargo test --workspace
|
|
|
|
# линт: формат + clippy (warnings = ошибки)
|
|
lint:
|
|
cargo fmt --all --check
|
|
cargo clippy --workspace --all-targets -- -D warnings
|
|
|
|
# лицензии + advisories
|
|
deny:
|
|
cargo deny check
|
|
|
|
# интеграционные тесты на session-шине (нужен dbus: brew install dbus / в Lima)
|
|
test-integration:
|
|
dbus-run-session -- cargo test --workspace -- --ignored
|
|
|
|
# полный локальный гейт
|
|
ci: lint test deny
|