Skip to content

chore(deps): bump bits-ui from 0.22.0 to 1.3.10 #953

chore(deps): bump bits-ui from 0.22.0 to 1.3.10

chore(deps): bump bits-ui from 0.22.0 to 1.3.10 #953

Workflow file for this run

name: python checks
on: [push, pull_request, workflow_dispatch]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up python
uses: astral-sh/setup-uv@v5
with:
python-version: 3.13
enable-cache: true
cache-dependency-glob: pyproject.toml
- name: Install dependencies
run: |
uv pip install -r pyproject.toml basedpyright isort black
- name: Run isort check
run: |
python -m isort . --check --diff
- name: Run black check
run: |
python -m black . --check --diff
- name: Run Ruff check
run: |
ruff check --output-format github
ruff format --check --diff
- name: Run pyright check
run: |
basedpyright