minicrossterm/scripts/test-examples.sh

14 lines
221 B
Bash
Raw Normal View History

2019-09-19 21:12:16 +10:00
#!/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