Skip to content

Update stage.yml

Update stage.yml #46

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