chore: add repo-wide AGENTS.md with agent guidelines #3
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: 🧪 Tooling & Skill Tests | |
| # Unit tests for repo tooling (tools/) and skill scripts | |
| # (.agents/skills/*/scripts/). Recipe tests under core/ and contrib/ are | |
| # handled separately by python-tests.yml. | |
| on: | |
| pull_request: | |
| paths: | |
| - "tools/**" | |
| - ".agents/**" | |
| - "pyproject.toml" | |
| - "uv.lock" | |
| - ".github/workflows/tools-tests.yml" | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "tools/**" | |
| - ".agents/**" | |
| - "pyproject.toml" | |
| - "uv.lock" | |
| - ".github/workflows/tools-tests.yml" | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| pytest: | |
| name: pytest (tools + skills) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v6 | |
| with: | |
| # Test against the minimum supported Python version. | |
| python-version: "3.11" | |
| - name: Install dependencies (incl. dev group) | |
| run: uv sync --dev | |
| - name: Run pytest | |
| run: uv run pytest |