Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,13 @@ jobs:
needs: [checks, publish-local]
runs-on: ubuntu-22.04

strategy:
fail-fast: false
matrix:
include:
- { jdk: "temurin:1.21" }
- { jdk: "temurin:1.25" }

steps:
- name: Checkout
# https://github.com/actions/checkout/releases
Expand Down Expand Up @@ -184,12 +191,12 @@ jobs:
coursier-${{ hashFiles('project/plugins.sbt', 'project/build.properties') }}-
coursier-

- name: Set up JDK 21
- name: Set up ${{ matrix.jdk }}
# https://github.com/coursier/setup-action/releases
# v1.3.5
uses: coursier/setup-action@7bde40eee928896f074dbb76d22dd772eed5c65f
with:
jvm: temurin:1.21
jvm: ${{ matrix.jdk }}

- name: Download io.kalix dependencies
# https://github.com/actions/download-artifact/releases
Expand Down
Loading