There was an error while loading. Please reload this page.
2 parents dddd77e + dbe2820 commit a695d10Copy full SHA for a695d10
1 file changed
.github/workflows/continuous-build-data.yml
@@ -0,0 +1,23 @@
1
+name: Build phrase database
2
+on:
3
+ push:
4
+ paths:
5
+ - 'Source/Data/**'
6
+ - '.github/workflows/continuous-build-data.yml'
7
+ pull_request:
8
9
10
11
+
12
+jobs:
13
+ build:
14
+ name: Build phrase database
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: actions/checkout@v5
18
+ - uses: actions/setup-python@v6
19
+ with:
20
+ python-version: '3.12'
21
+ - name: Build phrase database
22
+ run: make
23
+ working-directory: Source/Data
0 commit comments