20 lines
276 B
Bash
Executable File
20 lines
276 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
export RUSTFLAGS="-D warnings"
|
|
export RUSTFMT_CI=1
|
|
|
|
# Print version information
|
|
rustc -Vv
|
|
cargo -V
|
|
|
|
# Build and test main crate
|
|
cargo build --locked
|
|
cargo test
|
|
|
|
# Build and test other crates
|
|
cd config_proc_macro
|
|
cargo build --locked
|
|
cargo test
|