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 3971dcf commit e7545d2Copy full SHA for e7545d2
.github/workflows/ci.yml
@@ -14,15 +14,22 @@ jobs:
14
name: OS=${{ matrix.os }}, Java=${{ matrix.java }}, Gradle=${{ matrix.gradle }}
15
strategy:
16
matrix:
17
- os: [ ubuntu-latest, windows-latest ]
+ os: [ ubuntu-24.04-arm ]
18
# Always test on the latest version and some LTS.
19
- java: [ 17, 21, 25 ]
+ java: [ 17, 25 ]
20
# Test on the minimum Gradle version and the latest.
21
gradle: [ 8.3, current ]
22
exclude:
23
# Gradle 8.3 doesn't support Java 25.
24
- gradle: 8.3
25
java: 25
26
+ include:
27
+ - os: windows-latest
28
+ gradle: 8.3
29
+ java: 17
30
31
+ gradle: current
32
+ java: 21
33
runs-on: ${{ matrix.os }}
34
steps:
35
- uses: actions/checkout@v4
0 commit comments