We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7484128 commit 2f3a735Copy full SHA for 2f3a735
.github/workflows/json_generation.yml
@@ -0,0 +1,28 @@
1
+name: Frontend JSON Generation
2
+on:
3
+ push:
4
+ pull_request:
5
+jobs:
6
+ generation:
7
+ runs-on: ubuntu-latest
8
+ container:
9
+ image: debian:stable-slim
10
+ steps:
11
+ - name: Python setup
12
+ run: |
13
+ apt-get update && apt-get install --no-install-recommends -y python3 python3-venv python3-pip && apt-get clean
14
+ python3 -m venv venv
15
+ - name: Checkout
16
+ uses: actions/checkout@v4
17
+ - name: Install requirements
18
19
+ . venv/bin/activate
20
+ pip3 install -r requirements.txt
21
+ - name: Validate YAMLs
22
23
24
+ make -j$(nproc) validate
25
+ - name: Generate JSONs
26
27
28
+ make O=./build -j$(nproc)
0 commit comments