Skip to content
This repository has been archived by the owner on Jan 17, 2025. It is now read-only.

Update ci.yml

Update ci.yml #45

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