Skip to content

Instantly share code, notes, and snippets.

@rogood
Last active November 18, 2019 12:59
Show Gist options
  • Select an option

  • Save rogood/2e875cefcebe96f168a9be2526032885 to your computer and use it in GitHub Desktop.

Select an option

Save rogood/2e875cefcebe96f168a9be2526032885 to your computer and use it in GitHub Desktop.
Flutter Pre-Push Hook
#!/usr/bin/env bash
flutter analyze
if [ $? -ne 0 ]; then
exit 1
fi
flutter test
if [ $? -ne 0 ]; then
exit 1
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment