Skip to content

Add --sampling-params to response regeneration script #955

Add --sampling-params to response regeneration script

Add --sampling-params to response regeneration script #955

Workflow file for this run

name: Quality
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
quality-checks:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.10", "3.13"]
env:
UV_SYSTEM_PYTHON: 1
UV_TORCH_BACKEND: "cpu"
steps:
- uses: actions/checkout@v7
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python }}
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Install dependencies
run: uv pip install .[dev]
- name: Run quality checks
run: make quality