feat: add new fields, validate.py, GitHub Action, updated README

This commit is contained in:
Tim Jochen Kicker
2026-02-22 19:07:11 +01:00
parent bf70965548
commit cdf280acbf
5 changed files with 267 additions and 60 deletions

20
.github/workflows/validate.yml vendored Normal file
View File

@@ -0,0 +1,20 @@
name: Validate Repo
on:
pull_request:
branches: [main]
push:
branches: [main, dev]
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Validate repo structure
run: python3 validate.py
- name: Validate repo structure + check URLs
run: python3 validate.py --check-urls
continue-on-error: true # URL checks are best-effort