9 lines
128 B
Bash
Executable file
9 lines
128 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
echo "> Running debug tests..."
|
|
cargo test
|
|
|
|
echo "> Running release tests..."
|
|
cargo test --release
|