mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-21 15:12:33 -04:00
0ed26a774b
Co-authored-by: Zeke Foppa <github.com/bfops>
13 lines
258 B
Bash
Executable File
13 lines
258 B
Bash
Executable File
#!/bin/env bash
|
|
|
|
script_dir="$(readlink -f "$(dirname "$0")")"
|
|
stdb_root="$(realpath "$script_dir/../")"
|
|
|
|
set -euox pipefail
|
|
|
|
cd "$stdb_root"
|
|
cargo check --all --tests --benches
|
|
cargo fmt --all -- --check
|
|
cargo clippy --all --tests --benches -- -D warnings
|
|
|