Mark empty signature fields on the page preview (#484) #1016
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: Java CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| # Report both platforms; a failure on one is not a reason to hide the other's result. | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-24.04, windows-2025] | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: 21 | |
| distribution: 'temurin' | |
| cache: 'maven' | |
| - name: Build with Maven | |
| run: mvn --batch-mode --update-snapshots verify | |
| - name: Upload surefire reports | |
| if: failure() | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: surefire-reports-${{ matrix.os }} | |
| path: '**/target/surefire-reports/**' |