Skip to content

Commit

Permalink
Github action: test runner uses updated dependencies and only execute…
Browse files Browse the repository at this point in the history
…s agains API34.
  • Loading branch information
dennisguse committed Sep 23, 2023
1 parent 660bd2d commit 2341306
Showing 1 changed file with 6 additions and 11 deletions.
17 changes: 6 additions & 11 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,20 @@ jobs:
test:
timeout-minutes: 45
runs-on: macos-latest
strategy:
matrix:
api-level: [ 24, 30 ]
target: [ default ]
fail-fast: false
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '11'
distribution: 'adopt'
java-version: '17'

- name: run tests
uses: reactivecircus/android-emulator-runner@v2.26.0
uses: reactivecircus/android-emulator-runner@v2.28.0
with:
api-level: ${{ matrix.api-level }}
target: ${{ matrix.target }}
api-level: 34
target: default
arch: x86_64
profile: Nexus 6
script: ./gradlew connectedCheck
Expand Down

0 comments on commit 2341306

Please sign in to comment.