fixed some minor issues based on test results #61
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
name: Flutter integration test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
drive_android: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
api-level: [29] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: '17.0.7' | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: '3.19.0' | |
channel: 'stable' | |
# Run integration test | |
- name: Run Flutter Driver tests | |
uses: reactivecircus/android-emulator-runner@v2 | |
with: | |
api-level: ${{ matrix.api-level }} | |
arch: x86_64 | |
profile: Nexus 6 | |
script: flutter test integration_test --flavor netknights | |