1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
.PHONY: build test unit e2e all clean fmt clippy build: cargo build test: unit unit: cargo test --all-targets e2e: build ./scripts/e2e.sh all: unit e2e fmt: cargo fmt --all clippy: cargo clippy --all-targets -- -D warnings clean: cargo clean rm -rf .dev-servers/e2e .dev-servers/e2e-unpacked .dev-servers/bundle.zip