From 65b3714c4b40cfffa244e5c216421b216d04d4dd Mon Sep 17 00:00:00 2001 From: jjy Date: Sat, 12 Oct 2024 16:48:11 +0800 Subject: [PATCH] ci: test with --release --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9da93e4..ff2e4a9 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,13 @@ default: integration -integration: check-fmt check clippy test run-example +integration: check-fmt check clippy test test-release run-example test: cargo test --all ${TEST_ARGS} -- --nocapture +test-release: + cargo test --release --all ${TEST_ARGS} -- --nocapture + clippy: cargo clippy --all --all-targets