Skip to content

Add Codex sibling refs to PR template #184

Add Codex sibling refs to PR template

Add Codex sibling refs to PR template #184

Workflow file for this run

name: Format/Lint Pipeline
permissions:
contents: read
on:
push:
branches:
- main
pull_request:
jobs:
style-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version-file: ".python-version"
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Install the project
run: uv sync --locked --all-extras --dev
- name: Check format
run: uv run ruff format --check --diff
# TODO: Enable linting
# - name: Lint code
# run: uv run ruff check