Skip to content

Move p.isNaN() check inside try block, post #4195 #161

Move p.isNaN() check inside try block, post #4195

Move p.isNaN() check inside try block, post #4195 #161

Workflow file for this run

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@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Set up JDK
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.13.0
with:
distribution: 'temurin'
java-version: ${{ matrix.java_version }}
cache: 'maven'
- name: Build
run: cmd /c "mvnw.cmd -B -ff -ntp clean verify"