build(deps): bump actions/checkout from 3 to 4 #166
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: integration test | |
on: [pull_request] | |
jobs: | |
drive_android: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: subosito/[email protected] | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
- name: "Run Flutter Driver tests API 18" | |
uses: reactivecircus/android-emulator-runner@v2 | |
with: | |
api-level: 18 | |
target: default | |
arch: x86 | |
script: "cd example && flutter drive --target=test_driver/app.dart" | |
working-directory: ./flutter_secure_storage | |
- name: "Run Flutter Driver tests API 33" | |
uses: reactivecircus/android-emulator-runner@v2 | |
with: | |
api-level: 33 | |
target: google_apis | |
arch: x86_64 | |
script: "cd example && flutter drive --target=test_driver/app.dart" | |
working-directory: ./flutter_secure_storage |