From ec8711cd381c8f7a8f96e07e7d6226d26e0852cd Mon Sep 17 00:00:00 2001 From: parazyd Date: Sat, 4 Dec 2021 00:15:07 +0100 Subject: [PATCH] Makefile: Test tx binary along with crate test on make test. --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index a1ece2d7f..6353a5da2 100644 --- a/Makefile +++ b/Makefile @@ -24,6 +24,8 @@ $(BINS): $(BINDEPS) test: $(CARGO) test --release --all-features + $(CARGO) build --release --all-features --bin tx + ./target/release/tx fix: $(CARGO) clippy --release --all-features --fix --allow-dirty