1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-08 13:58:47 +00:00
Files
samples/travis_script.sh
2018-11-08 10:56:29 -08:00

27 lines
557 B
Bash

set -e
declare -a PROJECT_NAMES=(
"jsonexample" \
"shrine" \
"veggieseasons" \
)
for PROJECT_NAME in "${PROJECT_NAMES[@]}"
do
echo "== Testing '${PROJECT_NAME}' on Flutter's $FLUTTER_VERSION channel =="
pushd "${PROJECT_NAME}"
# Run the analyzer to find any static analysis issues.
../flutter/bin/flutter analyze
# Run the formatter on all the dart files to make sure everything's linted.
find . | grep "\.dart$" | xargs ../flutter/bin/flutter format -n
# Run the actual tests.
../flutter/bin/flutter test
popd
done
echo "-- Success --"