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 e61ae06
Showing 1 changed file with 5 additions and 13 deletions.
18 changes: 5 additions & 13 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,27 +8,19 @@ 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 }}
arch: x86_64
profile: Nexus 6
api-level: 34
script: ./gradlew connectedCheck

- name: Archive
Expand Down

0 comments on commit e61ae06

Please sign in to comment.