6 lines
133 B
Bash
Executable file
6 lines
133 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -eoux pipefail
|
|
|
|
cargo build --workspace --all-features
|
|
|
|
RUST_LOG=error cargo test --workspace --all-features
|