Skip to content

Bump actions/checkout from 6 to 7 #710

Bump actions/checkout from 6 to 7

Bump actions/checkout from 6 to 7 #710

Workflow file for this run

---
name: Java CI with Maven
on:
push:
branches: [ '**' ]
pull_request:
branches: [ '**' ]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
java: [24, 25, 26]
fail-fast: false
max-parallel: 4
name: Test JDK ${{ matrix.java }}, ${{ matrix.os }}
steps:
- uses: actions/checkout@v7
- name: Set up JDK
uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- name: Run headless test
if: runner.os == 'Linux'
run: xvfb-run mvn -B test package --file pom.xml
- name: Run test
if: runner.os != 'Linux'
run: mvn -B test package --file pom.xml