Skip to content

Bump actions/checkout from 4 to 5 #45

Bump actions/checkout from 4 to 5

Bump actions/checkout from 4 to 5 #45

Workflow file for this run

name: Automatic tests
on:
pull_request:
branches: [ master ]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
java: [ '17', '21' ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: ${{ matrix.java }}
- name: Test with Maven
run: mvn test