Fix 1509: Re-add the header and footer when newPage() is called explicitly after it was called implicitly. #2518
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |