Skip to content

Compliance checker

Compliance checker #5

name: Validate Agentic Collections
on:
pull_request:
push:
branches: [main]
jobs:
compliance-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install uv
run: curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Install dependencies and validate structure
run: |
source $HOME/.cargo/env
make install
make validate
- name: Validate skill design (changed skills only)
env:
GITHUB_EVENT_NAME: ${{ github.event_name }}
GITHUB_BASE_REF: ${{ github.base_ref }}
GITHUB_EVENT_BEFORE: ${{ github.event.before }}
run: |
source $HOME/.cargo/env
./scripts/ci-validate-changed-skills.sh