Update CI workflow to install gawk using apt-get instead of brew #46
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' | |
| - run: sudo apt-get update && sudo apt-get install -y gawk | |
| - name: Test data files | |
| run: make check | |
| working-directory: Source/Data | |
| - name: Build phrase database | |
| run: make | |
| working-directory: Source/Data |