Allow override DeserializationFeature.READ_UNKNOWN_ENUM_VALUES_USING_DEFAULT_VALUE
with JsonFormat.Feature.READ_UNKNOWN_ENUM_VALUES_USING_DEFAULT_VALUE
#756
Workflow file for this run
This file contains 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: Build and Test Snapshot (Windows) | |
on: | |
push: | |
branches: | |
- master | |
- "3.0" | |
- "2.17" | |
paths-ignore: | |
- "README.md" | |
- "release-notes/*" | |
pull_request: | |
branches: | |
- master | |
- "3.0" | |
- "2.17" | |
paths-ignore: | |
- "README.md" | |
- "release-notes/*" | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: 'windows-2022' | |
strategy: | |
fail-fast: false | |
matrix: | |
java_version: ['8'] | |
env: | |
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1" | |
steps: | |
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 | |
- name: Set up JDK | |
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java_version }} | |
cache: 'maven' | |
- name: Build | |
run: cmd /c "mvnw.cmd -B -ff -ntp clean verify" |