1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
# SPDX-License-Identifier: AGPL-3.0-or-later .PHONY: fmt fmt-check check test test-full build-release fmt: cargo fmt --all fmt-check: cargo fmt --all -- --check check: cargo clippy --all-targets --no-default-features --features dev-fast -- -D warnings test: cargo test --all --no-default-features --features dev-fast test-full: cargo test --all --features full build-release: cargo build --release --locked --bin kaizen --features full