GitHub: setup action #5
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |