Files
cdk/misc/scripts/check.sh
thesimplekid c77feec5e5 chore: fix precommit scrips check
This removes rustup from the scripts. As rust versions should be managed
through the nix shell and not rust up.
2024-04-24 16:33:42 +01:00

12 lines
375 B
Bash
Executable File

#!/usr/bin/env bash
set -exuo pipefail
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
"${DIR}/check-fmt.sh" check # Check if Rust code is formatted
"${DIR}/check-crates.sh" # Check all crates
"${DIR}/check-crates.sh" msrv # Check all crates MSRV
#"${DIR}/check-bindings.sh" # Check all bindings
"${DIR}/check-docs.sh" # Check Rust docs