Bump minimum required Java version to 21 #674
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: Hunspell regression tests | |
on: | |
pull_request: | |
branches: | |
- 'main' | |
paths: | |
- '.github/workflows/hunspell.yml' | |
- 'lucene/analysis/common/**' | |
jobs: | |
test: | |
name: Run Hunspell regression tests | |
timeout-minutes: 15 | |
runs-on: ubuntu-latest | |
env: | |
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: 21 | |
java-package: jdk | |
- name: Prepare caches | |
uses: ./.github/actions/gradle-caches | |
- name: Run regular and regression tests | |
run: ./gradlew -p lucene/analysis/common check testRegressions |