Skip to content

Update nightly cron to use latest BoTorch for website built, use latest linear operator with latest BoTorch #735

Update nightly cron to use latest BoTorch for website built, use latest linear operator with latest BoTorch

Update nightly cron to use latest BoTorch for website built, use latest linear operator with latest BoTorch #735

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@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Set up Python
uses: actions/setup-python@v5
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