Sync edgetx to Gitea

This commit is contained in:
2026-08-03 16:37:20 +08:00
commit 14eb5a3fb9
5364 changed files with 2835009 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
---
name: Validate fw.json
on:
push:
branches:
- 'main'
- '[0-9]+.[0-9]+'
tags:
- v*
paths:
- 'fw.json'
pull_request:
branches:
- 'main'
- '[0-9]+.[0-9]+'
paths:
- 'fw.json'
workflow_dispatch:
jobs:
json-validate:
name: Validate fw.json file
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Validate fw.json syntax and schema
run: python3 tools/validate-json.py --syntax-only
- name: Validate fw.json alphabetical order
run: python3 tools/validate-json.py --order-only