github workflow cleanup and minor improvements #1
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: "Run tests: module lucene/analysis/common (extra regression tests)" | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- 'main' | |
- 'branch_9x' | |
paths: | |
- '.github/workflows/hunspell.yml' | |
- 'lucene/analysis/common/**' | |
push: | |
branches: | |
- 'main' | |
- 'branch_9x' | |
paths: | |
- '.github/workflows/hunspell.yml' | |
- 'lucene/analysis/common/**' | |
env: | |
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }} | |
jobs: | |
test: | |
name: Run Hunspell regression tests | |
timeout-minutes: 15 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/prepare-for-build | |
- name: Run 'gradlew lucene/analysis/common check testRegressions' | |
run: ./gradlew -p lucene/analysis/common check testRegressions |