File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed
Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change 1717 steps :
1818 - uses : actions/checkout@v3
1919
20+ - name : Set up JDK
21+ uses : actions/setup-java@v3
22+ with :
23+ distribution : ' temurin'
24+ java-version : 17
25+ java-package : jdk
26+
27+ - name : Prepare caches
28+ uses : ./.github/actions/gradle-caches
29+
30+ - name : Run regular and regression tests
31+ run : ./gradlew -p lucene/analysis/common check testRegressions
32+ name : Hunspell regression tests
33+
34+ on :
35+ pull_request :
36+ branches :
37+ - ' main'
38+ paths :
39+ - ' .github/workflows/hunspell.yml'
40+ - ' lucene/analysis/common/**'
41+
42+ jobs :
43+ test :
44+ name : Run Hunspell regression tests
45+
46+ runs-on : ubuntu-latest
47+
48+ steps :
49+ - uses : actions/checkout@v3
50+ with :
51+ persist-credentials : false
52+
2053 - name : Set up JDK
2154 uses : actions/setup-java@v3
2255 with :
You can’t perform that action at this time.
0 commit comments