mirror of
https://github.com/aljazceru/cdk.git
synced 2025-12-19 13:44:55 +01:00
11 lines
286 B
Bash
Executable File
11 lines
286 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -exuo pipefail
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
"${DIR}/check-fmt.sh" # Format the code
|
|
"${DIR}/check-crates.sh" # Check all crates
|
|
"${DIR}/check-bindings.sh" # Check all bindings
|
|
"${DIR}/check-docs.sh" # Check Rust docs
|