15 lines
326 B
Bash
Executable File
15 lines
326 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
cargo test
|
|
# For doc tests in "README.md".
|
|
cargo +nightly test --features nightly
|
|
# And just with serde1.
|
|
cargo test --features serde1
|
|
# And with const functions.
|
|
cargo +nightly test --features const_fn
|
|
cargo run --example roster
|
|
cargo fmt
|
|
cargo clippy --bins --examples --tests --benches -- -D warnings
|