Skip to content

Bump to 2.9 Alpha 0 (#2597) #4096

Bump to 2.9 Alpha 0 (#2597)

Bump to 2.9 Alpha 0 (#2597) #4096

Workflow file for this run

name: Linting
on:
push:
branches:
- main
- release
pull_request:
branches:
- main
- release
jobs:
checkSyntax:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout Source
uses: actions/checkout@v5
- name: Install UV and Python
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
- name: Sync UV
run: |
uv sync --no-dev --group lint
- name: Ruff Check
run: |
uv run --no-sync ruff --version
uv run --no-sync ruff check
- name: Pyright Check
run: |
uv run --no-sync pyright --version
uv run --no-sync pyright
- name: Isort Check
run: |
uv run --no-sync isort --version
uv run --no-sync isort --check .