Skip to content
Open
Changes from 2 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
15 changes: 8 additions & 7 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ on:
pull_request:
branches:
- master
workflow_dispatch:

jobs:
test:
Expand All @@ -38,24 +39,24 @@ jobs:
- temurin
- zulu
java-version:
- 8
- 11
- 17
- 21
include:
- platform: windows-latest
java-distribution: adopt-hotspot
java-version: 11
java-version: 17
- platform: macos-latest
java-distribution: adopt-hotspot
java-version: 11
java-version: 17
runs-on: ${{ matrix.platform }}
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Java
uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: ${{ matrix.java-distribution }}
java-version: ${{ matrix.java-version }}
java-version: ${{ matrix.java-version }}
- name: Build and Test
run: mvn -B package