Skip to content

[5.x]: Adding the ability to save geotiffs with a palette #1507

[5.x]: Adding the ability to save geotiffs with a palette

[5.x]: Adding the ability to save geotiffs with a palette #1507

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
uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: '8'
- name: Cache Gradle packages
uses: actions/cache@v1
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle
- name: Check netCDF-Java documentation for deprecations warnings
run: './gradlew :docs:testClasses |& (! grep -F "warning: [deprecation]")'