Skip to content

Commit a695d10

Browse files
authored
Merge pull request #737 from openvanilla/dev/build-data-ci-job
Introduce a new CI job for building the phrase db
2 parents dddd77e + dbe2820 commit a695d10

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
paths:
9+
- 'Source/Data/**'
10+
- '.github/workflows/continuous-build-data.yml'
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

Comments
 (0)