Skip to content

GitHub: setup action #5

GitHub: setup action

GitHub: setup action #5

Workflow file for this run

name: Frontend JSON Generation
on:
push:
pull_request:
jobs:
generation:
runs-on: ubuntu-latest
container:
image: debian:stable-slim
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Python setup
run: apt update && apt install -y python3 python3-venv && apt clean
- name: Install requirements
run: pip3 install -r requirements.txt
- name: Validate YAMLs
run: make -j$(nproc) validate
- name: Generate JSONs
run: make O=./build -j$(nproc)