.DEFAULT_GOAL:=help
.PHONY: test test-integration test-all clean help
test:
cargo test --no-fail-fast --bin wash -- --nocapture
test-integration:
docker compose -f ./tools/docker-compose.yml up --detach
cargo test --no-fail-fast --test "integration*" -- --nocapture
docker compose -f ./tools/docker-compose.yml down
rust-check:
rustfmt --edition 2021 --check src/*.rs src/*/*.rs
cargo clippy --all-features --all-targets
test-all:
$(MAKE) test
$(MAKE) test-integration
$(MAKE) rust-check
clean:
wash drain all
help:
@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m<target>\033[0m\n"} /^[a-zA-Z_\-.*]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)