minicrossterm/scripts/test-examples.sh
2019-09-19 13:12:16 +02:00

14 lines
221 B
Bash
Executable File

#!/usr/bin/env bash
set -ev
pushd examples/program_examples
for d in */ ; do
pushd "$d"
cargo build
if [ "$TRAVIS_RUST_VERSION" = "stable" ]; then
cargo fmt --all -- --check
fi
popd
done
popd