Skip to content

Commit

Permalink
Test againt Java Semeru 17
Browse files Browse the repository at this point in the history
  • Loading branch information
acogoluegnes committed Jan 8, 2024
1 parent c953ed6 commit 599e987
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/test-supported-java-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,19 @@ jobs:
build:
runs-on: ubuntu-22.04
strategy:
matrix:
java: [ '11', '17', '21', '22-ea' ]
name: Test against Java ${{ matrix.java }}
distribution: [ 'temurin' ]
version: [ '11', '17', '21', '22-ea' ]
include:
- distribution: 'semeru'
version: '17'
name: Test against Java ${{ matrix.distribution }} ${{ matrix.version }}
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
distribution: ${{ matrix.distribution }}
java-version: ${{ matrix.version }}
cache: 'maven'
- name: Start RabbitMQ
run: ci/start-broker.sh
Expand Down

0 comments on commit 599e987

Please sign in to comment.