19 lines
346 B
Makefile
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
|