Fix range filtering on Transactions page #32
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: build-android | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
name: Run tests and build Android apk | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v2 | |
with: | |
distribution: 'zulu' | |
java-version: '11' | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: 'stable' | |
- run: flutter pub get | |
- run: flutter pub run build_runner build --delete-conflicting-outputs | |
- run: flutter test | |
- run: flutter build apk --flavor dev --android-project-arg qa | |
- name: Upload artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: MoneyManager.apk | |
path: build/app/outputs/apk/dev/release/app-dev-release.apk |