Update CI workflows to install gawk and modify check command for UTF-… #45
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 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.12' | |
| - name: Install gawk | |
| run: brew install gawk | |
| - name: Test data files | |
| run: make check | |
| working-directory: Source/Data | |
| - name: Build phrase database | |
| run: make | |
| working-directory: Source/Data |