This repository has been archived by the owner on Jan 6, 2025. It is now read-only.
chore: initialize integration test using uuv_flutter, #3 #14
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 app | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
workflow_dispatch: | |
jobs: | |
# build: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v4 | |
# - uses: subosito/flutter-action@v2 | |
# with: | |
# channel: 'stable' | |
# - name: Build apk | |
# run: flutter build apk --debug | |
# - name: Upload APK | |
# uses: actions/upload-artifact@v4 | |
# with: | |
# name: app_debug | |
# path: build/app/outputs/flutter-apk/app-debug.apk | |
integration-tests: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
api-level: [ 34 ] | |
target: [ playstore ] | |
# needs: [ build ] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: 'stable' | |
- name: Retrieve dependencies | |
run: dart pub get | |
- name: Generate tests | |
run: dart run build_runner build --delete-conflicting-outputs | |
- name: Run Flutter Driver tests | |
uses: reactivecircus/android-emulator-runner@v2 | |
with: | |
target: ${{ matrix.target }} | |
api-level: ${{ matrix.api-level }} | |
arch: x86_64 | |
profile: Nexus 6 | |
script: flutter test integration_test |