Compliance checker #5
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |