Skip to content

Fix not to render optional fields when unset #81

Fix not to render optional fields when unset

Fix not to render optional fields when unset #81

Workflow file for this run

---
name: Test
on:
pull_request:
branches: [main]
env:
JAVA_VERSION: '11'
JAVA_DISTRO: 'zulu'
jobs:
build:
name: Unit Test
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Java
uses: actions/setup-java@v3
with:
java-version: ${{ env.JAVA_VERSION }}
distribution: ${{ env.JAVA_DISTRO }}
cache: maven
- name: Build
run: ./mvnw -ntp -B --file pom.xml verify