Prefer library(reif) predicates over builtins #56
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: CI Pipeline | |
| on: | |
| push: | |
| branches: [ main, dev, DEV202608 ] | |
| pull_request: | |
| branches: [ main, dev, DEV202608 ] | |
| jobs: | |
| test: | |
| name: Test & Validate Skills | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.9", "3.10", "3.11", "3.12"] | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v3 | |
| - name: Run Test Suite | |
| run: | | |
| PYTHONDONTWRITEBYTECODE=1 uv run pytest | |
| - name: Validate Agent Skills | |
| run: | | |
| PYTHONDONTWRITEBYTECODE=1 uv run prolog-validate-skills .agents/skills |