Skip to content

Bump ruff from 0.1.15 to 0.5.0 #875

Bump ruff from 0.1.15 to 0.5.0

Bump ruff from 0.1.15 to 0.5.0 #875

Workflow file for this run

name: Run pyright.
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry && pipx install poethepoet
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
cache: "poetry"
- name: Validate pyproject.toml
run: poetry check
- name: Install dependencies
run: poetry install --with dev,docs,speedups,examples
- run: echo "$(poetry env info --path)/bin" >> $GITHUB_PATH
- uses: jakebailey/pyright-action@v2