From 306f9eef28e978fd4a40089be44f3fde24fcb799 Mon Sep 17 00:00:00 2001 From: krrrr38 Date: Fri, 12 Jun 2026 16:50:05 +0900 Subject: [PATCH] add Java 21 to test matrix in test-java17 workflow Co-Authored-By: Claude Sonnet 4.6 (1M context) Signed-off-by: krrrr38 --- .github/workflows/test-java17.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-java17.yml b/.github/workflows/test-java17.yml index e6b1be0..2ec39e8 100644 --- a/.github/workflows/test-java17.yml +++ b/.github/workflows/test-java17.yml @@ -17,7 +17,10 @@ permissions: jobs: build: runs-on: ubuntu-latest - name: Build + name: Build (Java ${{ matrix.java-version }}) + strategy: + matrix: + java-version: ['17', '21'] timeout-minutes: 5 defaults: run: @@ -31,6 +34,6 @@ jobs: - uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5 with: distribution: temurin - java-version: '17' + java-version: ${{ matrix.java-version }} cache: maven - run: ./mvnw test -q -Dtest=OptimalPortfolioScenarioTest