Skip to content

Record live recurrent reinforcement follow-up #1122

Record live recurrent reinforcement follow-up

Record live recurrent reinforcement follow-up #1122

Workflow file for this run

name: ci
on:
push:
pull_request:
workflow_dispatch:
jobs:
verify:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.11'
- name: Set up uv
uses: astral-sh/setup-uv@v8.1.0
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: '22'
- name: Validate release metadata and publish target names
run: uv run python scripts/check_release_metadata.py
- name: Run tests
run: uv run pytest tests/ -q
- name: Run release-readiness smoke
run: uv run python scripts/smoke_release_readiness.py
- name: Build Python distributions
run: uvx --from build python -m build
- name: Dry-run npm package
run: npm pack --dry-run