Merge pull request #973 from ably/throw-exception-on-released-channel #691
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: Emulate | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
check: | |
runs-on: macos-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
android-api-level: [ 19, 21, 24, 29 ] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: reactivecircus/android-emulator-runner@v2 | |
with: | |
api-level: ${{ matrix.android-api-level }} | |
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none | |
disable-animations: true | |
script: ./gradlew :android:connectedAndroidTest | |
- uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: android-build-reports | |
path: android/build/reports/ |