Skip to content

Update target trial selection logic to only consider trials with data for optimization config metrics #6416

Update target trial selection logic to only consider trials with data for optimization config metrics

Update target trial selection logic to only consider trials with data for optimization config metrics #6416

Workflow file for this run

name: Lint
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
env:
# `uv pip ...` requires venv by default. This skips that requirement.
UV_SYSTEM_PYTHON: 1
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.10"
- name: Install dependencies
run: uv pip install pre-commit
- name: Run pre-commit
run: pre-commit run --all-files --show-diff-on-failure