forked from blasthavers/blastmud
8 lines
198 B
Bash
Executable File
8 lines
198 B
Bash
Executable File
#!/bin/bash -e
|
|
set -Eeuo pipefail
|
|
|
|
cd blastmud-repo
|
|
echo Running tests
|
|
cargo test --target-dir ../target --profile release-with-debug
|
|
cargo build --target-dir ../target --profile release-with-debug
|