We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b89e72 commit 4b720c9Copy full SHA for 4b720c9
.github/workflows/test.yml
@@ -55,9 +55,16 @@ jobs:
55
key: ${{ runner.os }}-${{ hashFiles('**/.lock') }}
56
- name: Set up JDK 25
57
uses: actions/setup-java@v4
58
+ if: runner.os != 'Windows' || runner.arch != 'ARM64'
59
with:
60
java-version: '25'
61
distribution: 'temurin'
62
+ - name: Set up JDK 25 ea
63
+ uses: actions/setup-java@v5
64
+ if: runner.os == 'Windows' && runner.arch == 'ARM64'
65
+ with:
66
+ java-version: '25-ea'
67
+ distribution: 'temurin'
68
- name: Set up Gradle
69
uses: gradle/actions/setup-gradle@v4
70
0 commit comments