Skip to content
This repository has been archived by the owner on Dec 20, 2024. It is now read-only.

Update to v4 of actions #36

Update to v4 of actions

Update to v4 of actions #36

Workflow file for this run

name: CI
on:
push:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
java: [ '17', '18', '19', '20', '21' ]
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: zulu
- run: mvn test