This repository has been archived on 2025-11-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
runner_rust/scripts/test.sh
2025-09-09 17:54:09 +02:00

10 lines
178 B
Bash
Executable File

#!/bin/bash
set -e
SCRIPT_DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
RUNNER_DIR=$(cd "$SCRIPT_DIR/.." && pwd)
pushd "$RUNNER_DIR"
cargo check --all
cargo test --all
popd