Merge pull request #13 from mutualmobile/pp_wave_ripple #61
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check formatting, Analyze, Test & Build | |
on: | |
push: | |
jobs: | |
setup_flutter: | |
name: Check formatting, Analyze, Test & Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: '12.x' | |
# Setup the flutter environment. | |
- uses: subosito/flutter-action@v1 | |
# flutter version | |
with: | |
flutter-version: '3.10.1' | |
channel: 'stable' | |
# Get flutter dependencies. | |
- run: flutter pub get | |
# Check for any formatting issues in the code. | |
- run: dart format --set-exit-if-changed --output none . | |
# Statically analyze the Dart code for any errors. | |
- run: flutter analyze . | |
# Run widget tests for our flutter project. | |
- run: flutter test | |
# Build apk. | |
- run: flutter build apk |