Add new entries for '𰻝', '𰻞', and '𰻞𰻞麵' in BPMFBase.txt and phrase.occ #129
Workflow file for this run
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: Build phrase database | |
| on: | |
| push: | |
| paths: | |
| - 'Source/Data/**' | |
| - '.github/workflows/continuous-build-data.yml' | |
| pull_request: | |
| paths: | |
| - 'Source/Data/**' | |
| - '.github/workflows/continuous-build-data.yml' | |
| jobs: | |
| build: | |
| name: Build phrase database | |
| runs-on: ubuntu-latest | |
| env: | |
| LANG: en_US.UTF-8 | |
| LC_ALL: en_US.UTF-8 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.12' | |
| - name: Install dependencies and configure locale | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y gawk locales | |
| sudo locale-gen en_US.UTF-8 | |
| - name: Test data files | |
| run: make check | |
| working-directory: Source/Data | |
| - name: Build phrase database | |
| run: make | |
| working-directory: Source/Data |