chore: update Flutter project configuration and dependencies #87
Workflow file for this run
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
on: [push, pull_request] | |
name: build | |
jobs: | |
build: | |
name: Run build | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Flutter action | |
uses: subosito/flutter-action@v1 | |
with: | |
channel: 'stable' | |
- name: Install dependencies | |
run: flutter pub get | |
- name: Build apk | |
run: | | |
cd example | |
flutter build apk |