Skip to content

GitHub: setup action #1

GitHub: setup action

GitHub: setup action #1

Workflow file for this run

name: Frontend JSON Generation
on:
push:
pull_request:
jobs:
generation:
runs-on: debian-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Python setup
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install requirements
run: pip install -r requirements.txt
- name: Validate YAMLs
run: make -j$(nproc) validate
- name: Generate JSONs
run: make O=./build -j$(nproc)