Skip to content

Set centerLon when creating LatLonProjection for GRIB #1752

Set centerLon when creating LatLonProjection for GRIB

Set centerLon when creating LatLonProjection for GRIB #1752

Workflow file for this run

on:
pull_request:
jobs:
check-doc-build:
name: netCDF-Java Documentation Code Deprecation Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Java 8, 17
uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: |
8
17
- name: Cache Gradle packages
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Check netCDF-Java documentation for deprecations warnings
run: './gradlew :docs:testClasses |& (! grep -F "warning: [deprecation]")'