prometeu-runtime/Makefile
2026-03-24 13:40:46 +00:00

19 lines
346 B
Makefile

.PHONY: fmt fmt-check clippy test test-debugger-socket ci
fmt:
cargo fmt
fmt-check:
cargo fmt -- --check
clippy:
cargo clippy --workspace --all-features
test:
cargo test --workspace --all-targets --all-features --no-fail-fast
test-debugger-socket:
cargo test -p prometeu-host-desktop-winit --lib -- --ignored
ci: fmt-check clippy test