10 lines
272 B
Bash
Executable File
10 lines
272 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
cd "$(dirname "${BASH_SOURCE[0]}")/.."
|
|
cargo fmt --all -- --check
|
|
cargo clippy --workspace --all-targets --locked -- -D warnings
|
|
cargo test --workspace --locked
|
|
cargo build -p shacraft-tools --locked
|
|
python3 scripts/check_storage.py
|
|
|