Skip to content

Commit b9f630f

Browse files
committed
prevent persisting credentials
1 parent f527eb3 commit b9f630f

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

.github/workflows/hunspell.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,39 @@ jobs:
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:

0 commit comments

Comments
 (0)