2c8b3bef2b
* config_proc_macro: fix failing doctests * ci: include config_proc_macro crate in ci * [review] working native windows ci * [fix] add --locked file for ci * [fix] quoting of cmd variables
19 lines
256 B
Bash
Executable File
19 lines
256 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
export RUSTFLAGS="-D warnings"
|
|
|
|
# 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
|