Skip to content

chore(poc): POC for issue FOP 3275 #4

chore(poc): POC for issue FOP 3275

chore(poc): POC for issue FOP 3275 #4

# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: POC For issue FOP 3275
on:
push:
branches: ["issue-FOP-3275"]
jobs:
build:
name: FOP-3275 POC with Java ${{ matrix.jdk }} ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
jdk: ['21', '25']
os: [ 'ubuntu-latest', 'macos-latest', 'windows-latest' ]
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.jdk }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.jdk }}
distribution: 'oracle'
cache: maven
- name: Build and test
run: mvn clean install