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 29ea0de commit 30da76eCopy full SHA for 30da76e
.github/workflows/ci-pull.yml
@@ -13,19 +13,18 @@ permissions:
13
jobs:
14
build:
15
16
- # TODO Enable strategy for next Jakarta Release Cycle
17
- # strategy:
18
- # matrix:
19
- # java-version: [ '21', '25-ea' ]
+ strategy:
+ matrix:
+ java-version: [ '17', '21' ]
20
21
runs-on: ubuntu-latest
22
23
steps:
24
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
25
- - name: Set up JDK 21 #${{ matrix.java-version }}
+ - name: Set up JDK ${{ matrix.java-version }}
26
uses: actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 # v4.0.0
27
with:
28
- java-version: 21 #${{ matrix.java-version }}
+ java-version: ${{ matrix.java-version }}
29
distribution: 'temurin'
30
cache: maven
31
- name: Build API
0 commit comments