Skip to content

Merge branch 'update' of https://github.com/MOEAFramework/RealWorldBe… #12

Merge branch 'update' of https://github.com/MOEAFramework/RealWorldBe…

Merge branch 'update' of https://github.com/MOEAFramework/RealWorldBe… #12

Workflow file for this run

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