Skip to content
This repository has been archived by the owner on Jun 27, 2024. It is now read-only.

Commit

Permalink
Use JDK 17 on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
msasikanth committed Aug 19, 2023
1 parent 28e9582 commit 429aa94
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/android_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,12 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: set up JDK 11
- name: set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 11
java-version: 17
distribution: zulu
cache: 'gradle'

- name: Unit Tests
run: ./gradlew testDebugUnitTest
Expand All @@ -26,11 +27,12 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: set up JDK 11
- name: set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 11
java-version: 17
distribution: zulu
cache: 'gradle'

- name: Android Tests
uses: reactivecircus/android-emulator-runner@v2
Expand Down

0 comments on commit 429aa94

Please sign in to comment.