Skip to content

Merge pull request #218 from eckig/dependabot/maven/org.openjfx-javaf… #449

Merge pull request #218 from eckig/dependabot/maven/org.openjfx-javaf…

Merge pull request #218 from eckig/dependabot/maven/org.openjfx-javaf… #449

Workflow file for this run

---
name: Java CI with Maven
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
java: [21, 22]
fail-fast: false
max-parallel: 4
name: Test JDK ${{ matrix.java }}, ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- name: Run headless test
uses: coactions/setup-xvfb@v1
with:
run: mvn -B test package --file pom.xml