Skip to content

Commit

Permalink
build: Added run matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
erik-perri committed Nov 7, 2023
1 parent 9ad3bea commit f408253
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/appium.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
jobs:
test:
runs-on: macos-latest
strategy:
matrix:
api-level: [21, 28, 29, 33]
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down Expand Up @@ -44,7 +47,7 @@ jobs:
- name: Run emulator and tests
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: 29
api-level: ${{ matrix.api-level }}
script: ./gradlew assembleDebug && cd tests && npm run test

- name: Upload artifacts
Expand Down

0 comments on commit f408253

Please sign in to comment.