From 977d4412505a53d3171e63015f6b94aab258d61e Mon Sep 17 00:00:00 2001 From: extrawurst Date: Fri, 13 Oct 2023 11:52:06 +0200 Subject: [PATCH] add local rust checks script to simulate as much of the ci pipeline as possible --- scripts/check.sh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 scripts/check.sh diff --git a/scripts/check.sh b/scripts/check.sh new file mode 100755 index 000000000..2c4a8d50c --- /dev/null +++ b/scripts/check.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +cargo c --all-features +cargo clippy --all-features +# cargo clippy -- --cfg test +cargo t +cargo fmt --check +cargo sort -c -w