Add AutoPolicy 001 exact budget planner #11
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: | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| quality: | |
| name: Python 3.11 / ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 20 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| - macos-latest | |
| - windows-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - name: Set up Python | |
| uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0 | |
| with: | |
| python-version: "3.11" | |
| cache: pip | |
| cache-dependency-path: pyproject.toml | |
| - name: Install package and development tools | |
| run: | | |
| python -m pip install --upgrade pip | |
| python -m pip install -e ".[dev,figures]" | |
| - name: Check lint | |
| run: python -m ruff check . | |
| - name: Check formatting | |
| run: python -m ruff format --check . | |
| - name: Validate checked-in publication bytes | |
| run: >- | |
| python scripts/validate_publication_release.py | |
| --inventory-only | |
| research/results/experiment-001 | |
| - name: Validate AutoPolicy evidence | |
| run: >- | |
| python scripts/validate_autopolicy_release.py | |
| research/results/autopolicy-001 | |
| - name: Run tests | |
| run: python -m pytest --basetemp .pytest-ci | |
| - name: Build distributions | |
| run: python -m build | |
| - name: Smoke-test installed wheel | |
| run: >- | |
| python scripts/smoke_installed_distribution.py | |
| dist/cliffquant-0.2.0-py3-none-any.whl |