mirror of
https://github.com/aljazceru/cdk.git
synced 2025-12-19 13:44:55 +01:00
12 lines
374 B
Bash
Executable File
12 lines
374 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
|