1 parent 872a5e3 commit 0df9c55Copy full SHA for 0df9c55
1 file changed
.github/workflows/continuous-build-data.yml
@@ -13,12 +13,19 @@ jobs:
13
build:
14
name: Build phrase database
15
runs-on: ubuntu-latest
16
+ env:
17
+ LANG: en_US.UTF-8
18
+ LC_ALL: en_US.UTF-8
19
steps:
20
- uses: actions/checkout@v5
21
- uses: actions/setup-python@v6
22
with:
23
python-version: '3.12'
- - run: sudo apt-get update && sudo apt-get install -y gawk
24
+ - name: Install dependencies and configure locale
25
+ run: |
26
+ sudo apt-get update
27
+ sudo apt-get install -y gawk locales
28
+ sudo locale-gen en_US.UTF-8
29
- name: Test data files
30
run: make check
31
working-directory: Source/Data
0 commit comments