20 lines
392 B
YAML
20 lines
392 B
YAML
name: Check card layouts
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Check schemas and render example
|
|
run: |
|
|
python3 -m pip install -r requirements-dev.txt
|
|
CARD_LAYOUTS_REQUIRE_JSONSCHEMA=1 python3 scripts/check_repository.py
|