Run scheduled checks: Hunspell tests against latest dictionaries #8
This file contains hidden or 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 scheduled checks: Hunspell tests against latest dictionaries" | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| # 4:13 on Mondays | |
| - cron: '13 4 * * 1' | |
| permissions: {} | |
| env: | |
| DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }} | |
| jobs: | |
| test: | |
| name: Hunspell regression tests against latest dictionaries | |
| timeout-minutes: 15 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| persist-credentials: false | |
| - name: Configure tools | |
| uses: ./.github/actions/prepare-for-build | |
| - name: Run Hunspell regression tests against latest commits in dictionary repositories | |
| run: > | |
| ./gradlew -p lucene/analysis/common | |
| -Ptests.hunspell.regressions=true | |
| -Ptests.verbose=true | |
| -Ptests.hunspell.libreoffice.ref=master | |
| -Ptests.hunspell.woorm.ref=main | |
| test | |
| --tests "TestAllDictionaries" |