Merge pull request #81 from silvershort/feat/rotate #135
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_tests | |
on: | |
push: | |
branches: [master, testing-ffi] | |
paths: | |
- "**" | |
- "!README.md" | |
pull_request: | |
branches: [master] | |
paths: | |
- "**" | |
- "!README.md" | |
defaults: | |
run: | |
working-directory: example | |
jobs: | |
android_test: | |
name: Android_test | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
# api-level: [21, 23, 24, 26, 28, 29] | |
api-level: [33] | |
target: [google_apis] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: "true" | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: "zulu" # See 'Supported distributions' for available options | |
java-version: "17" | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: "stable" | |
cache: true | |
- run: flutter pub get | |
- name: Run integration tests | |
uses: reactivecircus/android-emulator-runner@v2 | |
with: | |
target: ${{ matrix.target }} | |
api-level: ${{ matrix.api-level }} | |
arch: x86_64 | |
profile: Nexus 6 | |
script: cd example && flutter pub get && flutter test integration_test | |
ios_test: | |
name: iOS_test | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: "true" | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: "stable" | |
cache: true | |
- uses: futureware-tech/simulator-action@v3 | |
with: | |
os: "iOS" | |
- run: flutter pub get | |
- name: Run integration tests | |
run: flutter test integration_test |