Skip to content

Convert OLCUT to JPMS modules #62

Convert OLCUT to JPMS modules

Convert OLCUT to JPMS modules #62

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: OLCUT CI (Windows x86_64, Java SE 17, 20)
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
# test against supported LTS versions and latest
java: [ 17, 20 ]
name: OLCUT - Windows Java SE ${{ matrix.java }}
steps:
- uses: actions/checkout@v2
- name: Setup Java Development Kits built by Oracle
uses: oracle-actions/setup-java@v1.3.1
with:
release: ${{ matrix.java }}
- name: Build with Maven
run: mvn -B package --file pom.xml