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

Update ci.yml

Update ci.yml #40

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: MOEAFramework/.github/actions/setup-build@main
with:
java-version: ${{ matrix.java }}
- run: mvn test