lucene/.github/workflows/hunspell.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
637 B
YAML
Raw Normal View History

name: Hunspell regression tests
on:
pull_request:
branches:
- 'main'
paths:
- '.github/workflows/hunspell.yml'
- 'lucene/analysis/common/**'
jobs:
test:
name: Run Hunspell regression tests
runs-on: ubuntu-latest
steps:
2022-11-14 13:50:52 -05:00
- uses: actions/checkout@v3
- name: Set up JDK
2022-11-14 13:50:52 -05:00
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17
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