mirror of
https://github.com/apache/lucene.git
synced 2025-02-10 03:55:46 +00:00
a4a6cfb39c
With the move of the main branch to 11, and the upcoming sunsetting of 9x, we need to replace branch_9x references with branch_10x in workflows.
38 lines
832 B
YAML
38 lines
832 B
YAML
name: "Run checks: module lucene/analysis/common"
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
pull_request:
|
|
branches:
|
|
- 'main'
|
|
- 'branch_10x'
|
|
paths:
|
|
- '.github/workflows/run-checks-mod-analysis-common.yml'
|
|
- 'lucene/analysis/common/**'
|
|
|
|
push:
|
|
branches:
|
|
- 'main'
|
|
- 'branch_10x'
|
|
paths:
|
|
- '.github/workflows/run-checks-mod-analysis-common.yml'
|
|
- 'lucene/analysis/common/**'
|
|
|
|
env:
|
|
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
|
|
|
|
jobs:
|
|
test:
|
|
name: Extra 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
|