From 5db83aa525da5fd147a12a56b069d462156bac5b Mon Sep 17 00:00:00 2001 From: MujkicA Date: Wed, 21 Feb 2024 16:12:16 +0100 Subject: [PATCH] add toml check to ci_checks.sh --- ci_checks.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ci_checks.sh b/ci_checks.sh index 6138a5d458..dc029e4dac 100755 --- a/ci_checks.sh +++ b/ci_checks.sh @@ -6,7 +6,9 @@ # - Rust `1.75.0` # - Nightly rust formatter # - `cargo install cargo-sort` +# - `npm install prettier prettier-plugin-toml` +npx prettier --check "**/Cargo.toml" && cargo +nightly fmt --all -- --check && cargo sort -w --check && source .github/workflows/scripts/verify_openssl.sh &&