Skip to content

Fix 1509: Re-add the header and footer when newPage() is called explicitly after it was called implicitly. #2518

Fix 1509: Re-add the header and footer when newPage() is called explicitly after it was called implicitly.

Fix 1509: Re-add the header and footer when newPage() is called explicitly after it was called implicitly. #2518

Workflow file for this run

name: OpenPDF Maven Build
on: [push, pull_request]
permissions:
contents: read
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
java: [21, 25, '27-ea'] # Only LTS and latest
name: Build with Java ${{ matrix.java }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- name: Set up Java ${{ matrix.java }}
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: ${{ matrix.java }}
- name: Check Maven version and directory contents
shell: bash
run: |
./mvnw -v
echo "** ls **"
pwd && ls -l
- name: Build with Maven
run: ./mvnw -B install --file pom.xml