mirror of
https://github.com/giuseppe-trisciuoglio/developer-kit.git
synced 2026-09-14 18:22:07 +08:00
chore: added validator script, added format for commands, agents and skills
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
name: Plugin Validation
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
validate-plugins:
|
||||
name: Validate Plugin Components
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: '3.11'
|
||||
cache: 'pip'
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install pyyaml
|
||||
|
||||
- name: Run plugin validation
|
||||
working-directory: .
|
||||
run: |
|
||||
echo "Running plugin validation for all components..."
|
||||
python .skills-validator-check/validators/cli.py --all
|
||||
Reference in New Issue
Block a user