Release v0.5.0: dynamic bounds, session persistence, calibrated quotas #93
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 | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| env: | |
| PYTHONUNBUFFERED: "1" | |
| jobs: | |
| quality: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.9" | |
| cache: "pip" | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| python -m pip install -e '.[dev]' | |
| - name: Run lint | |
| run: make lint | |
| runtime-contract: | |
| name: Runtime Contract | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| - 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 | |
| python -m pip install -e '.[dev]' | |
| - name: Compile patch-first runtime files | |
| run: make runtime-patch-check | |
| - name: Run runtime contract tests | |
| run: make runtime-contract-test | |
| - name: Upload regenerated contract artifacts for debugging | |
| if: failure() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: pbpk-runtime-contract-debug-${{ github.sha }} | |
| path: | | |
| .ci-regenerated/ | |
| retention-days: 1 | |
| - name: Retain validated distribution artifacts | |
| run: | | |
| python scripts/check_distribution_artifacts.py \ | |
| --artifact-dir dist \ | |
| --report-path dist/runtime-contract-report.json | |
| - name: Upload runtime contract artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: pbpk-runtime-contract-${{ github.sha }} | |
| path: | | |
| dist/*.tar.gz | |
| dist/*.whl | |
| dist/runtime-contract-report.json | |
| if-no-files-found: error | |
| retention-days: 14 |