Skip to content

Mark empty signature fields on the page preview (#484) #1016

Mark empty signature fields on the page preview (#484)

Mark empty signature fields on the page preview (#484) #1016

Workflow file for this run

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/**'