Mark push_verhoeff_check_digit as panicky
[verhoeff] / test
1 #!/bin/sh
2 set -e
3 export RUSTFLAGS="-D warnings"
4 for release in "" "--release"; do
5 for subcommand in clippy test doc; do
6 for features in "" "--no-default-features" "--no-default-features --features alloc"; do
7 cargo $subcommand $release $features
8 done
9 done
10 done