Skip to content

Commit 911249f

Browse files
committed
GitHub: setup action
1 parent 7484128 commit 911249f

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/json_generation.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Frontend JSON Generation
2+
on:
3+
push:
4+
pull_request:
5+
jobs:
6+
generation:
7+
runs-on: debian-latest
8+
steps:
9+
- name: Checkout
10+
uses: actions/checkout@v4
11+
- name: Python setup
12+
uses: actions/setup-python@v5
13+
with:
14+
python-version: '3.x'
15+
- name: Install requirements
16+
run: pip install -r requirements.txt
17+
- name: Validate YAMLs
18+
run: make -j$(nproc) validate
19+
- name: Generate JSONs
20+
run: make O=./build -j$(nproc)

0 commit comments

Comments
 (0)